-
Notifications
You must be signed in to change notification settings - Fork 8
53 lines (40 loc) · 1.54 KB
/
build.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
name: build
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Cache Dependencies & Build Outputs
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: Check Code Format
run: cargo fmt --all -- --check
- name: Code lint with default features
run: cargo clippy --all-targets --workspace -- -D warnings
- name: Code lint without default features
run: cargo clippy --all-targets --workspace --no-default-features -- -D warnings
- name: Code lint with all features
run: cargo clippy --all-targets --workspace --all-features -- -D warnings
- name: Test with default features
run: cargo test --all-targets --workspace
- name: Test without default features
run: cargo test --all-targets --workspace --no-default-features
- name: Test with all features
run: cargo test --all-targets --workspace --all-features
- name: Test no-cid-as-bytes feature
run: cargo test --all-targets --workspace --features no-cid-as-bytes