From 8b0710cd960318cb83fafd830a422e942f720cae Mon Sep 17 00:00:00 2001 From: Lokathor Date: Wed, 21 Oct 2020 15:06:52 -0600 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 72eaeee..74bcdaa 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -64,10 +64,11 @@ jobs: rust-version: nightly components: miri - uses: actions/checkout@v2 + # Note(Lokathor): We got some cached json errors, and so we cargo clean for this run. - run: cargo clean - run: cargo miri test --verbose --no-default-features - run: cargo miri test --verbose --all-features - - run: cargo miri test --verbose --manifest-path=derive/Cargo.toml --all-features + - run: cd derive && cargo clean && cargo miri test --verbose --all-features sanitizer-test: name: Test with -Zsanitizer=${{ matrix.sanitizer }}