-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (55 loc) · 1.54 KB
/
ci.yaml
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
name: CI
on:
push:
pull_request:
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUST_BACKTRACE: short
RUSTFLAGS: -D warnings
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --check --all
- run: cargo clippy --workspace --all-features
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: Test on ${{ matrix.os }}
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --workspace --all-features --no-run
- run: cargo test --workspace --all-features -- --nocapture --quiet
doc:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly
- run: cargo +nightly doc --workspace --no-deps --all-features
miri:
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-gnu, s390x-unknown-linux-gnu]
runs-on: ubuntu-latest
name: miri (${{ matrix.target }})
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@miri
with:
targets: ${{ matrix.target }}
- run: cargo +nightly miri setup
- run: cargo +nightly miri test --target ${{ matrix.target }} --all-features -p channels-packet