-
Notifications
You must be signed in to change notification settings - Fork 9
87 lines (84 loc) · 2.27 KB
/
rust-test.yaml
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
name: Rust CI
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
init:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust nightly toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: install just
uses: taiki-e/install-action@just
- name: generate testdata
run: |
just testdata
- uses: bissolli/gh-action-persist-workspace@v1
with:
action: persist
cargo-tests:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: chatfood/gh-action-persist-workspace@master
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: fuzz test
run: cargo run --release -- -m 100 -t 4 --diff-count 50000
cargo-lint:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: chatfood/gh-action-persist-workspace@master
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --workspace --all --locked -- -D warnings
cargo-build:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
continue-on-error: true
steps:
- uses: chatfood/gh-action-persist-workspace@master
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: build
id: build
run: cargo build --workspace --all --locked
cargo-doc:
needs: [init]
runs-on: ubuntu-latest
timeout-minutes: 20
continue-on-error: true
steps:
- uses: chatfood/gh-action-persist-workspace@master
with:
action: retrieve
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: doclint
id: build
continue-on-error: true
run: RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --document-private-items
- name: doctest
run: cargo test --doc --all --locked