Skip to content

Commit

Permalink
Update actions versions to latest
Browse files Browse the repository at this point in the history
Update Python tests to remove deprecated 3.7 and add 3.11
  • Loading branch information
NeonDaniel committed Jan 10, 2025
1 parent adfd03d commit 410a9cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
unit_tests:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.8, 3.9, '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -28,7 +28,7 @@ jobs:
run: |
pytest tests/test_client.py --doctest-modules --junitxml=tests/client-test-results.xml
- name: Upload client test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: client-test-results
path: tests/client-test-results.xml
path: tests/client-test-results-${{ matrix.python-version }}.xml

0 comments on commit 410a9cf

Please sign in to comment.