Skip to content

Commit c806ece

Browse files
authored
Merge pull request #22 from secondlife/signal/codecov
Bump codecov-action to v4
2 parents 5b63d1c + 864adff commit c806ece

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ jobs:
1111
name: Test & Build
1212
strategy:
1313
matrix:
14-
python-version: ['2.7', '3.7', '3.8', '3.10']
14+
python-version: ['3.7', '3.8', '3.10']
15+
image-variant: ['']
16+
include:
17+
- python-version: '2.7'
18+
image-variant: '-buster'
1519
runs-on: [ubuntu-latest]
1620
container:
17-
image: "python:${{ matrix.python-version }}-buster"
21+
image: "python:${{ matrix.python-version }}${{ matrix.image-variant }}"
1822
env:
1923
PYTHON: ${{ matrix.python-version }}
2024
steps:
@@ -44,7 +48,7 @@ jobs:
4448
run: python -m build
4549

4650
- name: Upload coverage
47-
uses: codecov/codecov-action@v3
51+
uses: codecov/codecov-action@v4
4852
if: matrix.python-version == '3.10'
4953
with:
5054
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)