diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 4960461..14a12e3 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -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 @@ -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() }} \ No newline at end of file