-
Notifications
You must be signed in to change notification settings - Fork 11
73 lines (60 loc) · 1.57 KB
/
ci.yml
File metadata and controls
73 lines (60 loc) · 1.57 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
name: Test & Lint
on:
push:
paths:
- 'Cargo.lock'
- 'Cargo.toml'
- 'rust-toolchain.toml'
- '.rustfmt.toml'
- 'src/**'
pull_request:
paths:
- 'Cargo.lock'
- 'Cargo.toml'
- 'rust-toolchain.toml'
- '.rustfmt.toml'
- 'src/**'
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUST_BACKTRACE: short
RUSTFLAGS: "-D warnings -W rust-2021-compatibility"
RUSTUP_MAX_RETRIES: 10
defaults:
run:
shell: bash
jobs:
test:
name: Test Suite
runs-on: ubuntu-24.04
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
# This plugin should be loaded after toolchain setup
- name: Cache
uses: Swatinem/rust-cache@v2
# `test` is used instead of `build` to also include the test modules in
# the compilation check.
- name: Compile
run: cargo test --no-run
- name: Test
run: cargo test -- --nocapture --quiet
lints:
name: Lints
runs-on: ubuntu-24.04
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
# This plugin should be loaded after toolchain setup
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check --color always
- name: Run cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings