Skip to content

Commit

Permalink
Merge pull request #23 from traP-jp/feat/#21-fix-CI-dead-code
Browse files Browse the repository at this point in the history
dead_codeがcargo buildで通らない問題を修正
  • Loading branch information
comavius authored Sep 19, 2024
2 parents c986f92 + 6d101b6 commit e208eec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/_test-judge-control-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"


jobs:
test:
Expand All @@ -31,9 +29,9 @@ jobs:


- name: Build test
run: cargo build --release --verbose
run: cargo build
- name: Run test
run: cargo test --verbose
run: cargo test
- name: Lint with clippy
run: cargo clippy --all-targets --all-features -- -A dead_code
- name: Check formatting
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/_test-queue-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"


jobs:
test:
Expand All @@ -31,9 +29,9 @@ jobs:


- name: Build test
run: cargo build --release --verbose
run: cargo build
- name: Run test
run: cargo test --verbose
run: cargo test
- name: Lint with clippy
run: cargo clippy --all-targets --all-features -- -A dead_code
- name: Check formatting
Expand Down

0 comments on commit e208eec

Please sign in to comment.