Skip to content

Commit

Permalink
Include global rustflags in rustflags override
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 1, 2022
1 parent facef6b commit e36a92c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
schedule: [cron: "40 1 * * *"]

env:
RUSTFLAGS: '-Dwarnings'
RUSTFLAGS: -Dwarnings

jobs:
test:
Expand All @@ -26,7 +26,7 @@ jobs:
toolchain: ${{matrix.rust}}
- run: cargo test
env:
RUSTFLAGS: ${{matrix.rustflags}}
RUSTFLAGS: ${{matrix.rustflags}} ${{env.RUSTFLAGS}}

msrv:
name: Rust 1.39.0
Expand Down

0 comments on commit e36a92c

Please sign in to comment.