File tree Expand file tree Collapse file tree 4 files changed +42
-6
lines changed Expand file tree Collapse file tree 4 files changed +42
-6
lines changed Original file line number Diff line number Diff line change 1- name : build
1+ name : Build
22
33on :
44 pull_request :
2424 with :
2525 caller-workflow-name : test
2626
27- - name : Clippy check
28- run : cargo clippy --all-features --all-targets --tests -- -D warnings
29-
3027 - name : Run tests
3128 run : |
3229 ./run_proxy_server.sh && ./stop_proxy_server.sh
Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ pull_request :
5+
6+ jobs :
7+ lint_proxy_server :
8+ runs-on : ubuntu-20.04-16c-64g
9+ defaults :
10+ run :
11+ working-directory : ./proxy_server
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v3
15+ with :
16+ submodules : recursive
17+
18+ - name : Sanity Check
19+ run : |
20+ cat /proc/cpuinfo
21+
22+ - name : Setup Rust
23+ uses : ./.github/actions/setup-rust
24+ with :
25+ caller-workflow-name : test
26+
27+ - name : Setup Rust tools
28+ run : |
29+ cargo install cargo-sort
30+ shell : bash
31+
32+ - name : Workspace sort
33+ run : cargo sort --workspace --check
34+ shell : bash
35+
36+ - name : Fmt
37+ run : cargo fmt --all --check
38+ shell : bash
39+
40+ - name : Clippy check
41+ run : cargo clippy --all-features --all-targets --tests -- -D warnings
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ name: release
22
33on :
44 push :
5- # branches:
6- # - master
75 tags :
86 - ' v*'
97
File renamed without changes.
You can’t perform that action at this time.
0 commit comments