Skip to content

Commit

Permalink
Merge pull request #22 from secondlife/signal/codecov
Browse files Browse the repository at this point in the history
Bump codecov-action to v4
  • Loading branch information
bennettgoble authored Feb 1, 2024
2 parents 5b63d1c + 864adff commit c806ece
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ jobs:
name: Test & Build
strategy:
matrix:
python-version: ['2.7', '3.7', '3.8', '3.10']
python-version: ['3.7', '3.8', '3.10']
image-variant: ['']
include:
- python-version: '2.7'
image-variant: '-buster'
runs-on: [ubuntu-latest]
container:
image: "python:${{ matrix.python-version }}-buster"
image: "python:${{ matrix.python-version }}${{ matrix.image-variant }}"
env:
PYTHON: ${{ matrix.python-version }}
steps:
Expand Down Expand Up @@ -44,7 +48,7 @@ jobs:
run: python -m build

- name: Upload coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.10'
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit c806ece

Please sign in to comment.