Skip to content

Commit

Permalink
Update unit tests to include 3.10 tests and resolve upload-artifact d…
Browse files Browse the repository at this point in the history
…eprecation
  • Loading branch information
NeonDaniel committed Sep 19, 2024
1 parent 0adce48 commit 450e745
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
unit_tests:
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9 ]
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -35,8 +35,8 @@ jobs:
run: |
pytest tests/test_stt.py --junitxml=tests/stt-test-results.xml
- name: Upload STT test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pytest-results-3.7
name: pytest-results-${{ matrix.python-version }}
path: tests/stt-test-results.xml
if: ${{ always() }}

0 comments on commit 450e745

Please sign in to comment.