forked from kube-rs/kube
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 1.3 KB
/
coverage.yml
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
36
37
38
39
40
41
42
43
44
name: coverage
on:
push:
branches:
- main
pull_request:
paths:
- "**.rs"
- "**.toml"
- "**.yml"
jobs:
tarpaulin-codecov:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install stable toolchain
# tarpaulin is currently broken for Rust 1.83, see #1657
uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- name: Install tarpaulin
uses: taiki-e/install-action@v2
with:
tool: [email protected]
- uses: nolar/setup-k3d-k3s@v1
with:
version: v1.26
# k3d-kube
k3d-name: kube
# Used to avoid rate limits when fetching the releases from k3s repo.
# Anonymous access is limited to 60 requests / hour / worker
# github-token: ${{ secrets.GITHUB_TOKEN }}
k3d-args: "-p 10250:10250 --no-rollback --k3s-arg --disable=traefik,servicelb,metrics-server@server:*"
- name: Run cargo-tarpaulin
run: |
# tarpaulin is currently broken for Rust 1.83, see #1657
rustup run 1.82.0 cargo tarpaulin -o xml --skip-clean
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}