-
Notifications
You must be signed in to change notification settings - Fork 14
75 lines (70 loc) · 2.08 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
75
#
# Configuration for GitHub-based CI, based on the stock GitHub Rust config.
#
name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check-style:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.5.0
- name: Report cargo version
run: cargo --version
- name: Report rustfmt version
run: cargo fmt -- --version
- name: Check style
run: cargo fmt -- --check
clippy-lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.5.0
- name: Report cargo version
run: cargo --version
- name: Report Clippy version
run: cargo clippy -- --version
- name: Run Clippy Lints
# Clippy's style nits are useful, but not worth keeping in CI. This
# override belongs in src/lib.rs, but that doesn't reliably work due to
# rust-lang/rust-clippy#6610.
run: cargo clippy --all-targets -- --deny warnings --allow clippy::style
check-generation:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3.5.0
- name: Install nightly rustfmt
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
default: false
- name: Report cargo version
run: cargo --version
- name: Report rustc version
run: rustc --version
- name: Check generation
run: cargo xtask generate --check
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-latest]
features: [ all, default ]
include:
- features: all
feature_flags: --all-features
steps:
- uses: actions/checkout@v3.5.0
- name: Report cargo version
run: cargo --version
- name: Report rustc version
run: rustc --version
- name: Build
run: cargo build ${{ matrix.feature_flags }} --locked --all-targets --verbose
- name: Run tests
run: cargo test ${{ matrix.feature_flags }} --locked --verbose
env:
RUST_BACKTRACE: 1