We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b63d1c + 864adff commit c806eceCopy full SHA for c806ece
.github/workflows/ci.yaml
@@ -11,10 +11,14 @@ jobs:
11
name: Test & Build
12
strategy:
13
matrix:
14
- python-version: ['2.7', '3.7', '3.8', '3.10']
+ python-version: ['3.7', '3.8', '3.10']
15
+ image-variant: ['']
16
+ include:
17
+ - python-version: '2.7'
18
+ image-variant: '-buster'
19
runs-on: [ubuntu-latest]
20
container:
- image: "python:${{ matrix.python-version }}-buster"
21
+ image: "python:${{ matrix.python-version }}${{ matrix.image-variant }}"
22
env:
23
PYTHON: ${{ matrix.python-version }}
24
steps:
@@ -44,7 +48,7 @@ jobs:
44
48
run: python -m build
45
49
46
50
- name: Upload coverage
47
- uses: codecov/codecov-action@v3
51
+ uses: codecov/codecov-action@v4
52
if: matrix.python-version == '3.10'
53
with:
54
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments