From f0346dde72088707ca0b9ccc2a0e964883ce3b60 Mon Sep 17 00:00:00 2001 From: Nicholas Karlson Date: Sun, 9 Nov 2025 14:57:01 -0800 Subject: [PATCH] chore(ci): enable pip cache and upload generated plots --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fde167f..b489b2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.10" + cache: "pip" - name: Install deps run: | @@ -27,3 +28,12 @@ jobs: - name: Tiny Chapter 13 smoke run: make ch13-ci + + + - name: Upload plots (artifact) + if: always() + uses: actions/upload-artifact@v4 + with: + name: ch13-plots + path: outputs/ + if-no-files-found: ignore \ No newline at end of file