From d1bbb420654c2ce99e76b3bee71867cc1c220167 Mon Sep 17 00:00:00 2001 From: Ernest Gupik Date: Mon, 30 Dec 2024 17:20:49 +0100 Subject: [PATCH] Actions: cargo test without explicit TMPDIR --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c1f01eb..e567cbf 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -32,7 +32,7 @@ jobs: run: cargo build --release --verbose - name: Run tests - run: TMPDIR=${{ runner.temp }} cargo test --verbose -- --nocapture + run: cargo test --verbose - name: Upload binary artifact if: success()