Skip to content

Commit

Permalink
test 2
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Drung <bdrung@posteo.de>
  • Loading branch information
bdrung committed Mar 14, 2024
1 parent 4186305 commit 9dc4df5
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,17 @@ jobs:
image: ${{ matrix.container }}
options: --privileged
steps:
- name: Install dependencies
- name: Install dependencies for Codecov
run: >
apt-get update &&
apt-get install --no-install-recommends --yes
pandoc python3 python3-coverage python3-ruamel.yaml python3-setuptools git ca-certificates curl
git
- uses: actions/checkout@v4
- name: Install dependencies
run: >
apt-get update &&
apt-get install --no-install-recommends --yes
pandoc python3 python3-coverage python3-ruamel.yaml python3-setuptools ca-certificates curl
- name: Run build
run: python3 -m coverage run --branch setup.py build
- name: Run install
Expand Down Expand Up @@ -61,6 +66,11 @@ jobs:
container:
image: ${{ matrix.container }}
steps:
- name: Install dependencies for Codecov
run: >
apt-get update &&
apt-get install --no-install-recommends --yes
git ca-certificates
- uses: actions/checkout@v4
- name: Install dependencies
run: >
Expand All @@ -75,12 +85,14 @@ jobs:
- name: Install dependencies for Codecov
run: >
apt-get install --no-install-recommends --yes
ca-certificates curl git
curl
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

system-testing:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9dc4df5

Please sign in to comment.