-
-
Notifications
You must be signed in to change notification settings - Fork 3
62 lines (49 loc) · 1.33 KB
/
check.yml
File metadata and controls
62 lines (49 loc) · 1.33 KB
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
54
55
56
57
58
59
60
61
62
name: PR check
on:
pull_request:
workflow_dispatch:
workflow_call:
jobs:
cargo-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code into the proper directory
uses: actions/checkout@v6
- name: Install cargo
uses: dtolnay/rust-toolchain@nightly
- name: Run tests
run: cargo test --all
rust-clippy:
runs-on: ubuntu-latest
steps:
- name: Check out code into the proper directory
uses: actions/checkout@v6
- name: Install cargo
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run clippy
run: cargo clippy --all -- -D warnings
rust-fmt:
runs-on: ubuntu-latest
steps:
- name: Check out code into the proper directory
uses: actions/checkout@v6
- name: Install cargo
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Format check
run: cargo +nightly fmt --check --all
js-fmt:
runs-on: ubuntu-latest
steps:
- name: Check out code into the proper directory
uses: actions/checkout@v6
- name: Set up node
uses: actions/setup-node@v6
- name: Install NPM deps
run: npm install
shell: bash
- name: Check web formatting
run: npm run prettier-check