-
Notifications
You must be signed in to change notification settings - Fork 28
48 lines (48 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
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: Swatinem/rust-cache@v2
with:
# this line means that only the main branch writes to the cache
# benefits: save about 7s per workflow by skipping the actual cache write
# downsides: PRs that update rust version or changes deps will be slower to iterate on due to changes not being cached.
save-if: ${{ github.ref == 'refs/heads/main' }}
- 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: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- 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