-
Notifications
You must be signed in to change notification settings - Fork 9
52 lines (48 loc) · 1.35 KB
/
push-pr-lint-test.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
name: push-pr-lint-test
permissions:
contents: read
checks: write
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: cargo test, tarpaulin & codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/cache@v4.0.2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
- run: cargo install cargo-tarpaulin
- run: cargo tarpaulin --out Xml
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
lints:
name: cargo clippy & fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/cache@v4.0.2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo fmt --all -- --check