-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eab41bf
commit e72c879
Showing
3 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Lint | ||
description: 'Run linters on the repository' | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
lint_proxy_server: | ||
runs-on: ubuntu-20.04-16c-64g | ||
defaults: | ||
run: | ||
working-directory: ./proxy_server | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Sanity Check | ||
run: | | ||
cat /proc/cpuinfo | ||
- name: Setup Rust | ||
uses: ./.github/actions/setup-rust | ||
with: | ||
caller-workflow-name: test | ||
|
||
- name: Setup Rust tools | ||
run: | | ||
cargo install cargo-sort | ||
cargo install cargo-udeps | ||
shell: bash | ||
|
||
- name: cargo sort | ||
run: cargo sort --workspace --check | ||
shell: bash | ||
|
||
- name: cargo fmt | ||
run: cargo fmt --all --check | ||
shell: bash | ||
|
||
- name: Clippy check | ||
run: cargo clippy --all-features --all-targets --tests -- -D warnings | ||
|
||
- name: cargo udeps | ||
run: cargo udeps --all-features --all-targets --tests | ||
shell: bash |
File renamed without changes.