File tree 2 files changed +23
-30
lines changed
2 files changed +23
-30
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
---
2
2
name : CI - Build
3
- " on " :
3
+ on :
4
4
pull_request :
5
5
push :
6
6
branches :
7
7
- " master"
8
8
schedule :
9
9
- cron : " 0 16 * * 1" # 8am PST every Monday
10
10
jobs :
11
- ci :
12
- name : Format, lint, and test
11
+ lint :
12
+ name : PR Checks
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ with :
17
+ submodules : recursive
18
+
19
+ - name : Install rust
20
+ run : |
21
+ rustup -V
22
+ rustup set profile minimal
23
+ rustup toolchain install stable
24
+ rustup show
25
+
26
+ - name : Check Formatting
27
+ run : cargo fmt --check --all
28
+
29
+ - name : Clippy
30
+ run : cargo clippy --check --workspace --all-features
31
+ build :
32
+ name : Build and test
13
33
runs-on : ${{ matrix.os }}
14
34
strategy :
15
35
matrix :
46
66
- uses : actions/checkout@v4
47
67
with :
48
68
submodules : recursive
49
- - uses : davidB/rust-cargo-make@v1
50
69
51
70
- name : Install musl tools
52
71
if : matrix.needs_musl
You can’t perform that action at this time.
0 commit comments