File tree 3 files changed +31
-28
lines changed
3 files changed +31
-28
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- name : CI
2
+ name : CI - Build
3
3
" on " :
4
4
pull_request :
5
5
push :
77
77
rustup show
78
78
79
79
- name : Build
80
- run : cargo make --no-workspace workspace-ci-flow
80
+ run : cargo build --workspace --all-features
81
+
82
+ - name : Test
83
+ run : cargo test --workspace --all-features
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : CI - Lint
3
+ on :
4
+ pull_request :
5
+ jobs :
6
+ lint :
7
+ name : PR Checks
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ with :
12
+ submodules : recursive
13
+ token : ${{ secrets.GH_TOKEN }}
14
+
15
+ - name : Install rust
16
+ run : |
17
+ rustup -V
18
+ rustup set profile minimal
19
+ rustup toolchain install stable
20
+ rustup show
21
+
22
+ - name : Check Formatting
23
+ run : cargo fmt --check --all
24
+
25
+ - name : Clippy
26
+ run : cargo clippy --check --workspace --all-features
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments