From 9a8ec0dce09b11c278655a3898978cbe7abf5217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 29 Jan 2025 09:38:02 +0100 Subject: [PATCH] Enable crate cache for integration tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1918b52..f4474fb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,6 +17,12 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install tox run: pip install tox + - name: Cache fetched crates + uses: actions/cache@v4 + if: ${{ matrix.suite == "integration" }} + with: + path: integration_test/dist + key: dist - name: Test using tox run: tox -e ${{ matrix.suite }} qa: