From e74adc2aec3d8e9ecd3defdb99a58cd8ef5c0ff8 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Wed, 6 Dec 2023 18:02:10 +0100 Subject: [PATCH] Use the sccache action --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fd759d4..ddbd165 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,9 +8,14 @@ on: jobs: test: + env: + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" steps: - name: Check out repository code uses: actions/checkout@v4 + - name: Set up sccache + uses: mozilla-actions/sccache-action@v0.0.3 - name: Run tests run: | cd ${{ github.workspace }}