From c69008543b73c4eb6b18ca68ff7748c0b0bf5b9d Mon Sep 17 00:00:00 2001 From: Cyril Rohr Date: Tue, 27 May 2025 14:29:17 +0200 Subject: [PATCH] fix --- .github/workflows/tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8365dd3..f2a4956 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -76,3 +76,20 @@ jobs: - name: Verify cache files outside working directory shell: bash run: __tests__/verify-cache-files.sh ${{ runner.os }} ~/test-cache + + test-container: + runs-on: runs-on,runner=2cpu-linux-arm64 + container: + image: ubuntu:latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Test in container + run: | + __tests__/create-cache-files.sh Linux test-cache + __tests__/verify-cache-files.sh Linux test-cache + - name: Save cache + uses: ./ + with: + key: test-container-${{ github.run_id }} + path: test-cache \ No newline at end of file