-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (39 loc) · 1.02 KB
/
rust.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
name: Rust
on:
push:
branches: [ main ]
pull_request:
permissions:
id-token: write
contents: read
checks: write
pull-requests: write
jobs:
verify-crate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Get Rust toolchain
id: toolchain
working-directory: .
run: |
awk -F'[ ="]+' '$1 == "channel" { print "toolchain=" $2 }' rust-toolchain >> "$GITHUB_OUTPUT"
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ steps.toolchain.outputs.toolchain }}
components: clippy, rustfmt
- name: cache dependencies
uses: Swatinem/rust-cache@v2.7.3
- name: install cargo-about
run: |
cargo install cargo-about
- name: reviewdog / clippy
uses: sksat/action-clippy@v0.7.1
with:
reporter: github-pr-review
- name: format
run: cargo fmt --all --check
- name: unit test
run: cargo test