-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (54 loc) · 1.5 KB
/
rust.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Rust
on:
push:
branches:
- main
- cki/github-workflow
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: false
- name: Install rustfmt for nightly
run: rustup component add --toolchain nightly rustfmt
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Install Rust dependencies
run: cargo fetch
- name: Build
run: cargo build --verbose
- name: Run cargo fmt
run: cargo +nightly fmt -- --check
- name: Run cargo clippy
run: cargo clippy -- -D warnings
- name: Install cargo-tarpaulin
run: cargo install cargo-tarpaulin
- name: Run cargo tarpaulin
run: cargo tarpaulin --rustflags="-C opt-level=0" --no-fail-fast --out xml
- name: Generate Code Coverage Summary
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: cobertura.xml
badge: true
fail_below_min: true
thresholds: '70 85'
output: both
format: markdown
- name: Export Job Summary
run: echo "$(<code-coverage-results.md)" >> $GITHUB_STEP_SUMMARY