-
Notifications
You must be signed in to change notification settings - Fork 2
140 lines (123 loc) · 3.99 KB
/
pull_request.yaml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
on:
pull_request:
types: [opened, synchronize, reopened, closed]
permissions:
contents: write
pull-requests: write
checks: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4.1.7
- name: ⚙️ Install Rust
uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
override: true
- name: ⚙️ Init GitHub check
uses: LouisBrunner/checks-action@v2.0.0
id: init
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Check for errors
status: in_progress
- name: ✅ Check for errors
run: cargo check
- name: ⚙️ Update GitHub check
uses: LouisBrunner/checks-action@v2.0.0
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_id: ${{ steps.init.outputs.check_id }}
conclusion: ${{ job.status }}
lint:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4.1.7
- name: ⚙️ Install Rust
uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
override: true
- name: ⚙️ Init GitHub check
uses: LouisBrunner/checks-action@v2.0.0
id: init
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Check linting
status: in_progress
- name: ✅ Check linting
run: cargo clippy --message-format human --all
- name: ⚙️ Update GitHub check
uses: LouisBrunner/checks-action@v2.0.0
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_id: ${{ steps.init.outputs.check_id }}
conclusion: ${{ job.status }}
format:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4.1.7
- name: ⚙️ Install Rust
uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
override: true
- name: ⚙️ Init GitHub check
uses: LouisBrunner/checks-action@v2.0.0
id: init
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Check formatting
status: in_progress
- name: ✅ Check formatting
run: cargo fmt --check --message-format human --all
- name: ⚙️ Update GitHub check
uses: LouisBrunner/checks-action@v2.0.0
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_id: ${{ steps.init.outputs.check_id }}
conclusion: ${{ job.status }}
test:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v4.1.7
- name: Init check
uses: LouisBrunner/checks-action@v2.0.0
id: init
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Run tests with coverage
status: in_progress
- name: ⚙️ Install Rust
uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
override: true
- name: ⚙️ Install grcov
run: cargo install grcov
- name: ⚙️ Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- name: ✅ Run tests with coverage
run: |
mkdir -p target/coverage
CARGO_INCREMENTAL=0 RUSTFLAGS='-Cinstrument-coverage' LLVM_PROFILE_FILE='cargo-test-%p-%m.profraw' cargo test
grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/coverage/tests.lcov
- name: 📝 Comment Code Coverage Report
uses: romeovs/lcov-reporter-action@v0.4.0
with:
lcov-file: target/coverage/tests.lcov
- name: ⚙️ Update GitHub check
uses: LouisBrunner/checks-action@v2.0.0
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
check_id: ${{ steps.init.outputs.check_id }}
conclusion: ${{ job.status }}