-
Notifications
You must be signed in to change notification settings - Fork 28
39 lines (39 loc) · 1 KB
/
build-and-test.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
name: ci
on:
pull_request:
push:
branches:
- main
jobs:
build_and_test:
name: build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --workspace --all-features
- run: cargo test --workspace --all-features
fmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: |
cd protocol_codegen
cargo fmt -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Install cargo-hack
uses: taiki-e/install-action@v2
with:
tool: [email protected]
- run: cargo hack --feature-powerset clippy --all-targets --locked -- -D warnings