-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 901 Bytes
/
on-push.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
name: Continuous Integration
on: [push, pull_request, merge_group]
env:
RUSTFLAGS: "-Dwarnings"
RUSTDOCFLAGS: "-Dwarnings"
jobs:
lint:
name: Lint and format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Run `pre-commit` checks
uses: pre-commit/[email protected]
- run: cargo doc --workspace --no-deps
- run: cargo fmt --check --all
test:
name: Test
needs: 'lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --workspace --all-targets --all-features --no-deps
- run: cargo test --workspace --no-run
- run: cargo test --workspace --no-fail-fast