Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,16 +205,17 @@ jobs:
run: |
apk update
apk upgrade
- name: Install System Python and Git
- name: Install Testing and Coverage Upload Dependencies
run: |
apk add python3 python3-dev py3-pip py3-nox py3-attrs git
apk add bash gpg curl
- name: Download Source
uses: actions/checkout@v4
- name: Run Tests
run: |
nox -e tests
- name: Upload to codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
Expand Down Expand Up @@ -273,3 +274,7 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ contains(github.ref, 'master') }}
Loading