File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1313 test :
1414 name : Test Suite
1515 runs-on : ubuntu-latest
16- env :
17- TMPDIR : ${{ runner.temp }} # Use GitHub's temp directory to avoid disk space issues
1816 steps :
1917 - uses : actions/checkout@v3
2018 with :
4543 ls -la target/release/build/fastga-rs-*/out/ || true
4644
4745 - name : Run tests
48- run : cargo test --release
46+ run : |
47+ # Set TMPDIR to GitHub's temp directory to avoid disk space issues
48+ export TMPDIR="${{ runner.temp }}"
49+ echo "TMPDIR for tests: $TMPDIR"
50+ cargo test --release
4951
5052 - name : Run clippy
5153 run : cargo clippy -- -D warnings
5658 build :
5759 name : Build Check
5860 runs-on : ubuntu-latest
59- env :
60- TMPDIR : ${{ runner.temp }} # Use GitHub's temp directory to avoid disk space issues
6161 strategy :
6262 matrix :
6363 rust : [stable, beta, nightly]
You can’t perform that action at this time.
0 commit comments