From 3404c6a06d395e6b8016465a026112a80cb747b9 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 24 Mar 2023 22:12:29 +0000 Subject: [PATCH] Try caching --- .gitea/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index b70bc95..279293f 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -11,8 +11,14 @@ jobs: things: [1, 2, 3, 4, 5] steps: - uses: actions/checkout@v3 + - name: Cache stuff + uses: actions/cache@v3 + with: + path: . + key: stuff - run: sleep 5 - name: Hello world run: docker run hello-world - run: docker ps - run: docker container ls +