Skip to content

Commit

Permalink
fix: github workflow python-test version (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime1907 authored Dec 27, 2022
1 parent 093592a commit 3134868
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, 3.10.0]
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2

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

- name: Install dependencies
run: |
Expand Down Expand Up @@ -57,4 +57,4 @@ jobs:
uses: mikepenz/action-junit-report@v2
if: always() # always run even if the previous step fails
with:
report_paths: "junit.xml"
report_paths: "junit.xml"

0 comments on commit 3134868

Please sign in to comment.