1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
---
name: coverage
"on": [push]
jobs:
test:
name: coverage
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install dependencies
run: |
sudo apt -y update
sudo apt -y install devscripts libapt-pkg-dev libtdb-dev \
libssl-dev pkg-config libgpgme-dev rustc cargo
cargo install cargo-tarpaulin
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools_rust setuptools
- name: Install breezy
run: python -m pip install --upgrade breezy
# TODO(jelmer): Add proper test isolation so this isn't necessary
- name: Setup bzr identity
run: brz whoami "CI <ci@noreply.github.com>"
- name: Generate code coverage
run: |
cargo tarpaulin --verbose --all-features --timeout 120 --out xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
|