-
Notifications
You must be signed in to change notification settings - Fork 1
74 lines (56 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Rust
on:
push:
branches:
- main
tags:
- '*'
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
build:
name: ${{ matrix.config.toolchain }} / ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- os: ubuntu-latest
toolchain: beta
- os: macos-latest
toolchain: stable
- os: ubuntu-latest
toolchain: stable
- os: windows-latest
toolchain: stable
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo
~/.rustup
key: ${{ runner.os }}-${{ matrix.config.toolchain }}
- name: Install Rust ${{ matrix.config.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.config.toolchain }}
components: clippy, rustfmt
- name: Build
run: cargo build --all-targets --verbose --workspace
- name: Test
run: cargo test --all-targets --verbose --workspace
- name: Check formatting
run: cargo fmt --check --all
- name: Build --all-features
run: cargo build --all-targets --all-features --verbose --workspace
- name: Test --all-features
run: cargo test --all-targets --all-features --verbose --workspace
- name: Clippy
run: cargo clippy --all-features -- -D warnings -D clippy::expect_used -D clippy::panic -D clippy::unwrap_used
- name: Clippy (tests)
run: cargo clippy --all-features --all-targets -- -D warnings