Drop unneeded quoting from env variable in workflows yaml

This commit is contained in:
David Tolnay 2022-04-28 19:29:09 -07:00
parent 71926ea4b0
commit 079962b982
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ on:
schedule: [cron: "40 1 * * *"]
env:
RUSTFLAGS: '-Dwarnings'
RUSTFLAGS: -Dwarnings
jobs:
test:
@ -38,7 +38,7 @@ jobs:
- uses: dtolnay/rust-toolchain@miri
- run: cargo miri test
env:
MIRIFLAGS: '-Zmiri-tag-raw-pointers'
MIRIFLAGS: -Zmiri-tag-raw-pointers
clippy:
name: Clippy