From 9bcbed2e843bd91570eede1f136fb3d231c252ab Mon Sep 17 00:00:00 2001 From: Tom Anderson Date: Tue, 16 Jul 2024 22:19:30 +1000 Subject: [PATCH] more debugging --- .github/workflows/build-and-test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e6baa26..d2b0536 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -7,7 +7,7 @@ concurrency: cancel-in-progress: true jobs: - clippy: + build-and-test: env: RUSTFLAGS: "-Dwarnings" runs-on: "ubuntu-latest" @@ -16,6 +16,7 @@ jobs: uses: "KyleMayes/install-llvm-action@v2" with: version: "17.0" + cached: true - name: "Checkout code" uses: "actions/checkout@v4" @@ -25,7 +26,7 @@ jobs: - name: "Build and test" run: | - echo "Using LLVM_PATH: $LLVM_PATH" + tree $LLVM_PATH cargo clippy cargo test env: