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
10 changes: 6 additions & 4 deletions .github/workflows/gating.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
- name: Install dependencies
run: |
# We need to install git inside the container otherwise the checkout action will use Git
# REST API and the .git directory won't be present which fails due to setuptools-scm
apt-get update && apt-get install --no-install-recommends --no-install-suggests -y git
# REST API and the .git directory won't be present which fails due to setuptools-scm.
# We also need to install curl and gpg to download and verify the codecov token.
apt-get update && apt-get install --no-install-recommends --no-install-suggests -y curl git gpg

pip install --upgrade pip nox

- uses: actions/checkout@v6
Expand All @@ -38,8 +40,8 @@ jobs:
nox -s "python-${{ matrix.python-version }}"

- name: Upload coverage reports to Codecov
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.10'
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
Loading