From 079962b982908384145928a407fc57d3d962c4dd Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 28 Apr 2022 19:29:09 -0700 Subject: [PATCH] Drop unneeded quoting from env variable in workflows yaml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 967502f..6580817 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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