File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,21 +15,21 @@ jobs:
1515 strategy :
1616 fail-fast : false
1717 matrix :
18- python-version : ["3.7", "3.9 "]
18+ python-version : ["3.7", "3.10 "]
1919
2020 steps :
21- - uses : actions/checkout@v2
21+ - uses : actions/checkout@v3
2222
2323 - name : Set up Python ${{ matrix.python-version }}
24- uses : actions/setup-python@v2
24+ uses : actions/setup-python@v3
2525 with :
2626 python-version : ${{ matrix.python-version }}
2727
2828 - name : Install dependencies
2929 run : |
3030 python -m pip install --upgrade pip setuptools wheel
3131 python -m pip install flit
32- flit install -s
32+ flit install
3333
3434 - name : Test with pytest
3535 run : |
4747 done
4848
4949 - name : Upload test coverage data to Codecov
50- if : ${{ matrix.python-version == '3.9 ' }}
50+ if : ${{ matrix.python-version == '3.10 ' }}
5151 uses : codecov/codecov-action@v2
5252 with :
5353 files : ./coverage.xml
You can’t perform that action at this time.
0 commit comments