diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c26ab9e19..cad64d1e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,9 +39,15 @@ jobs: uses: Swatinem/rust-cache@v2 with: cache-all-crates: true + cache-provider: buildjet - name: Build and archive tests run: cargo nextest archive --locked --workspace --all-features --archive-file nextest-archive.tar.zst + - name: debug + run: | + ls -R + pwd + ls -l - name: Upload archive to workflow uses: actions/upload-artifact@v4 with: @@ -62,6 +68,7 @@ jobs: uses: Swatinem/rust-cache@v2 with: cache-all-crates: true + cache-provider: buildjet - name: Build Bins run: cargo build --locked --profile test --bins @@ -119,6 +126,11 @@ jobs: with: name: nextest-archive + - name: debug + run: | + ls -R + ls -l + - name: Test run: cargo nextest run --archive-file nextest-archive.tar.zst --verbose --no-fail-fast timeout-minutes: 20