-
Notifications
You must be signed in to change notification settings - Fork 6
96 lines (85 loc) · 2.69 KB
/
rust-compile.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
on:
push:
branches:
- "main"
pull_request:
name: Rust
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUST_LOG: info
RUST_BACKTRACE: 1
RUSTFLAGS: "-D warnings"
CARGO_TERM_COLOR: always
jobs:
check-rustdoc-links:
name: Check intra-doc links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: >
# Check intra-doc links, thanks to ChatGPT
cargo metadata --no-deps --format-version=1 \
| jq -r '.packages[] | .name as $pname | .targets[] | [$pname, .kind[], .name] | @tsv' \
| while IFS=$'\t' read -r package kind name; do
case "$kind" in
lib)
cargo rustdoc -p "$package" --lib --all-features -- -D warnings -W unreachable-pub
;;
bin)
cargo rustdoc -p "$package" --bin "$name" --all-features -- -D warnings -W unreachable-pub
;;
example)
cargo rustdoc -p "$package" --example "$name" --all-features -- -D warnings -W unreachable-pub
;;
test)
cargo rustdoc -p "$package" --test "$name" --all-features -- -D warnings -W unreachable-pub
;;
bench)
cargo rustdoc -p "$package" --bench "$name" --all-features -- -D warnings -W unreachable-pub
;;
esac
done
format_and_lint:
name: Format and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
- name: Run rustfmt
uses: actions-rust-lang/rustfmt@v1
- name: Run clippy
run: cargo clippy --all-targets
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: $ {{ matrix.os }}
needs: [format_and_lint]
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
cache: false
- uses: Swatinem/rust-cache@v2
- name: Install cargo nextest
uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- name: Run tests
run: >
cargo nextest run --workspace
- name: Run doctests
run: >
cargo test --doc