Skip to content

Commit

Permalink
Add -D warnings in a few steps (#17081)
Browse files Browse the repository at this point in the history
# Objective

I missed a couple checks in #17011 

## Solution

Add env

## Testing

CI
  • Loading branch information
BenjaminBrienen authored Jan 3, 2025
1 parent 43db44c commit 39f38a1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env:
CARGO_TERM_COLOR: always
# If nightly is breaking CI, modify this variable to target a specific nightly version.
NIGHTLY_TOOLCHAIN: nightly
RUSTFLAGS: "-D warnings"

concurrency:
group: ${{github.workflow}}-${{github.ref}}
Expand Down Expand Up @@ -154,7 +155,6 @@ jobs:
build-wasm:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -170,14 +170,11 @@ jobs:
with:
target: wasm32-unknown-unknown
- name: Check wasm
env:
RUSTFLAGS: "-D warnings"
run: cargo check --target wasm32-unknown-unknown

build-wasm-atomics:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand Down Expand Up @@ -400,7 +397,6 @@ jobs:
msrv:
runs-on: ubuntu-latest
timeout-minutes: 30
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand Down

0 comments on commit 39f38a1

Please sign in to comment.