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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: CI
on:
push:
branches:
pull_request:
branches:
env:
CARGO_TERM_COLOR: always
# Reusable shell snippet for cloning every sibling crate dev-tools
# depends on as a path-dep. Keep this list in sync with the optional
# deps in Cargo.toml.
#
# YAML anchors aren't supported in `run:` blocks, so this block is
# repeated below. Update all copies together.
jobs:
test:
name: Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
steps:
- uses: actions/checkout@v5
- name: Check out sibling crates (path deps)
run: |
git clone --depth 1 https://github.com/jamesgober/dev-report.git ../dev-report
git clone --depth 1 https://github.com/jamesgober/dev-fixtures.git ../dev-fixtures
git clone --depth 1 https://github.com/jamesgober/dev-bench.git ../dev-bench
git clone --depth 1 https://github.com/jamesgober/dev-async.git ../dev-async
git clone --depth 1 https://github.com/jamesgober/dev-stress.git ../dev-stress
git clone --depth 1 https://github.com/jamesgober/dev-chaos.git ../dev-chaos
git clone --depth 1 https://github.com/jamesgober/dev-coverage.git ../dev-coverage
git clone --depth 1 https://github.com/jamesgober/dev-security.git ../dev-security
git clone --depth 1 https://github.com/jamesgober/dev-deps.git ../dev-deps
git clone --depth 1 https://github.com/jamesgober/dev-ci.git ../dev-ci
git clone --depth 1 https://github.com/jamesgober/dev-fuzz.git ../dev-fuzz
git clone --depth 1 https://github.com/jamesgober/dev-flaky.git ../dev-flaky
git clone --depth 1 https://github.com/jamesgober/dev-mutate.git ../dev-mutate
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
# Default features (fixtures + bench).
- name: Build (default features)
run: cargo build --verbose
- name: Test (default features)
run: cargo test --verbose
# No default features (report-only).
- name: Build (no default features)
run: cargo build --no-default-features --verbose
- name: Test (no default features)
run: cargo test --no-default-features --verbose
# All features (full).
- name: Build (all features)
run: cargo build --all-features --verbose
- name: Test (all features)
run: cargo test --all-features --verbose
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Check out sibling crates (path deps)
run: |
git clone --depth 1 https://github.com/jamesgober/dev-report.git ../dev-report
git clone --depth 1 https://github.com/jamesgober/dev-fixtures.git ../dev-fixtures
git clone --depth 1 https://github.com/jamesgober/dev-bench.git ../dev-bench
git clone --depth 1 https://github.com/jamesgober/dev-async.git ../dev-async
git clone --depth 1 https://github.com/jamesgober/dev-stress.git ../dev-stress
git clone --depth 1 https://github.com/jamesgober/dev-chaos.git ../dev-chaos
git clone --depth 1 https://github.com/jamesgober/dev-coverage.git ../dev-coverage
git clone --depth 1 https://github.com/jamesgober/dev-security.git ../dev-security
git clone --depth 1 https://github.com/jamesgober/dev-deps.git ../dev-deps
git clone --depth 1 https://github.com/jamesgober/dev-ci.git ../dev-ci
git clone --depth 1 https://github.com/jamesgober/dev-fuzz.git ../dev-fuzz
git clone --depth 1 https://github.com/jamesgober/dev-flaky.git ../dev-flaky
git clone --depth 1 https://github.com/jamesgober/dev-mutate.git ../dev-mutate
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Clippy (all features)
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Clippy (no default features)
run: cargo clippy --all-targets --no-default-features -- -D warnings
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check
docs:
name: Doc build
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v5
- name: Check out sibling crates (path deps)
run: |
git clone --depth 1 https://github.com/jamesgober/dev-report.git ../dev-report
git clone --depth 1 https://github.com/jamesgober/dev-fixtures.git ../dev-fixtures
git clone --depth 1 https://github.com/jamesgober/dev-bench.git ../dev-bench
git clone --depth 1 https://github.com/jamesgober/dev-async.git ../dev-async
git clone --depth 1 https://github.com/jamesgober/dev-stress.git ../dev-stress
git clone --depth 1 https://github.com/jamesgober/dev-chaos.git ../dev-chaos
git clone --depth 1 https://github.com/jamesgober/dev-coverage.git ../dev-coverage
git clone --depth 1 https://github.com/jamesgober/dev-security.git ../dev-security
git clone --depth 1 https://github.com/jamesgober/dev-deps.git ../dev-deps
git clone --depth 1 https://github.com/jamesgober/dev-ci.git ../dev-ci
git clone --depth 1 https://github.com/jamesgober/dev-fuzz.git ../dev-fuzz
git clone --depth 1 https://github.com/jamesgober/dev-flaky.git ../dev-flaky
git clone --depth 1 https://github.com/jamesgober/dev-mutate.git ../dev-mutate
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo doc --all-features --no-deps
msrv:
name: MSRV (Rust 1.85)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Check out sibling crates (path deps)
run: |
git clone --depth 1 https://github.com/jamesgober/dev-report.git ../dev-report
git clone --depth 1 https://github.com/jamesgober/dev-fixtures.git ../dev-fixtures
git clone --depth 1 https://github.com/jamesgober/dev-bench.git ../dev-bench
git clone --depth 1 https://github.com/jamesgober/dev-async.git ../dev-async
git clone --depth 1 https://github.com/jamesgober/dev-stress.git ../dev-stress
git clone --depth 1 https://github.com/jamesgober/dev-chaos.git ../dev-chaos
git clone --depth 1 https://github.com/jamesgober/dev-coverage.git ../dev-coverage
git clone --depth 1 https://github.com/jamesgober/dev-security.git ../dev-security
git clone --depth 1 https://github.com/jamesgober/dev-deps.git ../dev-deps
git clone --depth 1 https://github.com/jamesgober/dev-ci.git ../dev-ci
git clone --depth 1 https://github.com/jamesgober/dev-fuzz.git ../dev-fuzz
git clone --depth 1 https://github.com/jamesgober/dev-flaky.git ../dev-flaky
git clone --depth 1 https://github.com/jamesgober/dev-mutate.git ../dev-mutate
- uses: dtolnay/rust-toolchain@1.85
- uses: Swatinem/rust-cache@v2
- run: cargo build --all-features --verbose