Skip to content

Commit 18e6bc7

Browse files
committed
Naming fixes
1 parent eab41bf commit 18e6bc7

File tree

4 files changed

+42
-6
lines changed

4 files changed

+42
-6
lines changed

.github/workflows/lint_build_test.yml renamed to .github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build
1+
name: Build
22

33
on:
44
pull_request:
@@ -24,9 +24,6 @@ jobs:
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

.github/workflows/lint.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: release
22

33
on:
44
push:
5-
# branches:
6-
# - master
75
tags:
86
- 'v*'
97

File renamed without changes.

0 commit comments

Comments
 (0)