From 0b6da01ae207a0431eb5c460e6a08b87c27f91b3 Mon Sep 17 00:00:00 2001 From: ktdlr Date: Mon, 28 Oct 2024 15:39:18 +1100 Subject: [PATCH] Try setting TMPDIR to RUNNER_TEMP --- .github/workflows/rust-ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 20fb022f..f538c733 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -41,10 +41,7 @@ jobs: - name: Checking code format run: cd ./packages/ciphernode && cargo fmt -- --check - - name: debug - run: env - - name: Run tests run: | cd ./packages/ciphernode/ - cargo test + TMPDIR=${RUNNER_TEMP} cargo test