-
Notifications
You must be signed in to change notification settings - Fork 47
72 lines (57 loc) · 1.81 KB
/
build.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
name: build
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Cache Dependencies & Build Outputs
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust Nightly Toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Install Rust Stable Toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check Code Format
run: cargo fmt --all -- --check
shell: bash
- name: Code Lint
run: cargo clippy --all-targets --all-features --workspace -- -D warnings
shell: bash
- name: Code Lint Without Default Features
run: cargo clippy --no-default-features --workspace -- -D warnings
shell: bash
- name: Test
run: cargo test --all-features --workspace
shell: bash
- name: Nightly Test
run: cargo test
shell: bash
env:
RUSTFLAGS: '--cfg nightly -Zcrate-attr=feature(variant_count)'
RUSTUP_TOOLCHAIN: nightly
coverage:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Generate Code Coverage
run: |
cargo install --version 0.22.0 cargo-tarpaulin
cargo tarpaulin --all-features --out Xml
shell: bash
- name: Upload Code Coverage
uses: codecov/codecov-action@v5