-
Notifications
You must be signed in to change notification settings - Fork 31
66 lines (60 loc) · 2.1 KB
/
check.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
name: Clippy, Format & Test
on: [pull_request, push, workflow_dispatch]
jobs:
fmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check
- run: cargo fmt --manifest-path=example_project/Cargo.toml --all -- --check
check:
name: cargo check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --no-default-features
- run: cargo check --no-default-features --features cargo-lock
- run: cargo check --no-default-features --features dependency-tree
- run: cargo check --no-default-features --features git2
- run: cargo check --no-default-features --features semver
- run: cargo check --no-default-features --features chrono
- run: cargo check --all-features
- run: cargo check --manifest-path=example_project/Cargo.toml
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all --tests -- -D warnings
- run: cargo clippy --all-features --all --tests -- -D warnings
- run: cargo clippy --manifest-path=example_project/Cargo.toml --all --tests -- -D warnings
test:
name: cargo test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-none
- run: cargo test --no-default-features
- run: cargo test --all-features
- run: cargo test -- --ignored nostd_testbox
- run: cargo run --manifest-path=example_project/Cargo.toml
semver:
name: Semver check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install -y cmake
- uses: obi1kenobi/cargo-semver-checks-action@v2