-
Notifications
You must be signed in to change notification settings - Fork 87
49 lines (47 loc) · 1.29 KB
/
rust.yml
File metadata and controls
49 lines (47 loc) · 1.29 KB
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
name: Rust
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always # Force Cargo to use colors
TERM: xterm-256color
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Cache cargo build
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: |
cargo build
- name: Run tests
run: |
cargo test --no-default-features -- --color always
cargo test -- --color always
cargo test --features all -- --color always
- name: fmt
run: cargo fmt -v -- --check
- name: lint
run: cargo clippy --features all --tests -- -D warnings
- name: doc
run: cargo doc
fuzzing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Install cargo-fuzz
run: |
cargo install cargo-fuzz
- name: Build fuzzers
run: |
cd rust/candid
cargo +nightly fuzz build