-
Notifications
You must be signed in to change notification settings - Fork 16
101 lines (94 loc) 路 2.82 KB
/
Copy pathpush-pr-lint-test.yml
File metadata and controls
101 lines (94 loc) 路 2.82 KB
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
name: push-pr-lint-test
permissions:
contents: read
checks: write
on:
push:
branches:
- main
pull_request:
env:
ACT: false
jobs:
test:
name: cargo test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
# Linux
- ubuntu-latest
# macOS ARM64 - Tahoe (macOS 26 beta)
- macos-26
# macOS ARM64 - Sequoia (macOS 15)
- macos-15
# macOS ARM64 - Sonoma (macOS 14)
- macos-14
# macOS Intel - Sonoma (macOS 15 Intel)
- macos-15-intel
# Windows Server
- windows-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/cache@v5.0.3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ matrix.os }}-cargo-
- uses: dtolnay/rust-toolchain@stable
- run: git config --global user.name "tests" && git config --global user.email "tests@example.org"
- run: cargo test --all-features
coverage:
name: cargo tarpaulin & codecov
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: actions/cache@v5.0.3
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 "tests@example.org"
- run: cargo tarpaulin --out Xml --engine llvm
- uses: codecov/codecov-action@v7.0.0
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/checkout@v6.0.3
- uses: actions/cache@v5.0.3
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
actionlint:
name: actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.3
- uses: reviewdog/action-actionlint@v1.71.0
with:
reporter: github-pr-check
fail_level: warning