Skip to content

Commit

Permalink
Naming fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ebin-mathews committed Jan 11, 2024
1 parent eab41bf commit 18e6bc7
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: Build

on:
pull_request:
Expand All @@ -24,9 +24,6 @@ jobs:
with:
caller-workflow-name: test

- name: Clippy check
run: cargo clippy --all-features --all-targets --tests -- -D warnings

- name: Run tests
run: |
./run_proxy_server.sh && ./stop_proxy_server.sh
41 changes: 41 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Lint

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
shell: bash

- name: Workspace sort
run: cargo sort --workspace --check
shell: bash

- name: Fmt
run: cargo fmt --all --check
shell: bash

- name: Clippy check
run: cargo clippy --all-features --all-targets --tests -- -D warnings
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: release

on:
push:
# branches:
# - master
tags:
- 'v*'

Expand Down
File renamed without changes.

0 comments on commit 18e6bc7

Please sign in to comment.