-
Notifications
You must be signed in to change notification settings - Fork 210
44 lines (36 loc) · 976 Bytes
/
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
name: Rust PR Checks
on:
pull_request:
paths:
- 'rust/**'
jobs:
build_and_lint:
name: cargo check & cargo clippy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true
- name: Install Clang
run: |
sudo apt update
sudo apt install clang -y
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.0
profile: minimal
override: true
components: clippy
- name: cargo check
working-directory: ./rust
run: cargo check --workspace --all-features
- name: cargo doc test
working-directory: ./rust
run: cargo test --doc -- --show-output
- name: cargo clippy
working-directory: ./rust
run: cargo clippy -- -D warnings
continue-on-error: true
# If this step fails, it will warn (?)