-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (39 loc) · 1.3 KB
/
rust.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
# See https://doc.rust-lang.org/cargo/guide/continuous-integration.html#github-actions
on: [push, pull_request]
name: Rust CI
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
run: rustup update stable && rustup default stable
- name: Run cargo check
run: cargo check --lib --workspace
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
run: rustup update stable && rustup default stable
- name: Run cargo test
run: RUSTFLAGS=-Awarnings cargo test --lib --workspace --no-fail-fast
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
# for components, see https://rust-lang.github.io/rustup/concepts/components.html#components
run: rustup update stable && rustup default stable && rustup component add rustfmt clippy
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --all -- -D warnings