This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
108 lines (92 loc) · 2.86 KB
/
ci.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
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
102
103
104
105
106
107
108
name: CI
permissions:
contents: read
pull-requests: read
on:
push:
pull_request:
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
timeout-minutes: 30
env:
RUSTFLAGS: -Dwarnings
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Install Rust Beta
uses: dtolnay/rust-toolchain@beta
with:
components: clippy
- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- name: Clippy (stable)
run: cargo +stable clippy --all-features --all-targets --workspace && cargo clean
- name: Clippy (beta)
run: cargo +beta clippy --all-features --all-targets --workspace && cargo clean
- name: Clippy (nightly)
run: cargo +nightly clippy --all-features --all-targets --workspace && cargo clean
fmt:
name: Rustfmt
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Install Rust Beta
uses: dtolnay/rust-toolchain@beta
with:
components: rustfmt
- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Check Formatting (stable)
run: cargo +stable fmt --all --check
- name: Check Formatting (beta)
run: cargo +beta fmt --all --check
- name: Check Formatting (nightly)
run: cargo +nightly fmt --all --check
test:
name: Test ${{matrix.rust-channel}} ${{matrix.os == 'windows' && '(windows)' || ''}}
runs-on: ${{matrix.os}}-latest
timeout-minutes: 30
strategy:
matrix:
rust-channel: [stable, beta, nightly]
os: [ubuntu, windows]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust-channel}}
- name: Test Default Features
run: cargo test --all-targets --workspace
- name: Test All Features
run: cargo test --all-features --all-targets --workspace
- name: Test No Features
run: cargo test --no-default-features --all-targets --workspace
# just a simple job that requires all other jobs to pass for it to pass
# used for branch protection rules requiring ci pass (to avoid listing every matrix permutation)
ci:
name: CI Pass
runs-on: ubuntu-latest
needs:
- clippy
- fmt
- test
steps:
- run: echo "dummy message because github requires all jobs to have at least 1 step"