-
Notifications
You must be signed in to change notification settings - Fork 9
73 lines (67 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: push-pr-lint-test
permissions:
contents: read
checks: write
on:
push:
branches:
- main
pull_request:
env:
ACT: false
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
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: git config --global user.name "tests" && git config --global user.email "[email protected]"
- run: cargo test --all-features
coverage:
name: cargo tarpaulin & codecov
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
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
- uses: taiki-e/install-action@cargo-tarpaulin
- run: git config --global user.name "tests" && git config --global user.email "[email protected]"
- run: cargo tarpaulin --out Xml --engine llvm
- uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
dry_run: ${{ env.ACT }}
lints:
name: cargo clippy & fmt
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
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: rustup component add rustfmt clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo fmt --all -- --check