Skip to content

Commit

Permalink
ci: remove -D warning & enable features everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
imrn99 committed Sep 29, 2024
1 parent 2a18ed7 commit 111fa8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
# RUSTFLAGS: "-D warnings"

jobs:
build_crates:
Expand Down Expand Up @@ -52,4 +52,4 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build benchmarks
run: cargo build --benches
run: cargo build --benches
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
# RUSTFLAGS: "-D warnings"

jobs:
format:
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run Clippy
run: cargo clippy -- -D warnings
run: cargo clippy --all --all-features
tests:
runs-on: ubuntu-22.04
steps:
Expand All @@ -40,4 +40,4 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run Tests
run: cargo test --all --all-features
run: cargo test --all --all-features

0 comments on commit 111fa8b

Please sign in to comment.