Drop unneeded quoting from env variable in workflows yaml

This commit is contained in:
David Tolnay
2022-04-28 19:29:11 -07:00
parent 0d7a07d919
commit fb4ca10c8f
+2 -2
View File
@@ -6,7 +6,7 @@ on:
schedule: [cron: "40 1 * * *"]
env:
RUSTFLAGS: '-Dwarnings'
RUSTFLAGS: -Dwarnings
jobs:
test:
@@ -43,7 +43,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