Skip to content

Commit

Permalink
Let ChatGPT take a crack at this. now to test!
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaak-Malers committed Feb 22, 2024
1 parent 0a6bbd7 commit 3eb8962
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,29 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11'] # Add newer versions as needed

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run pytest
run: |
pytest ./test --junitxml=./test/results.xml
pytest ./test --junitxml=./test/results-${{ matrix.python-version }}.xml
- name: Archive test results
uses: actions/upload-artifact@v2
with:
name: test-results
path: ./test/results.xml
name: test-results-${{ matrix.python-version }}
path: ./test/results-${{ matrix.python-version }}.xml

0 comments on commit 3eb8962

Please sign in to comment.