Skip to content

Commit 04c9107

Browse files
committed
ci: update versions
1 parent 4686283 commit 04c9107

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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: |
@@ -47,7 +47,7 @@ jobs:
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

0 commit comments

Comments
 (0)