From 70cc0ab49024815d356c138c73f610a9a4b2168a Mon Sep 17 00:00:00 2001 From: ggman12 Date: Sun, 1 Feb 2026 20:58:51 -0500 Subject: [PATCH] cache the repisitory --- .github/workflows/process-historical-faa.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/process-historical-faa.yaml b/.github/workflows/process-historical-faa.yaml index ed2294f..804bbf8 100644 --- a/.github/workflows/process-historical-faa.yaml +++ b/.github/workflows/process-historical-faa.yaml @@ -60,6 +60,15 @@ jobs: with: python-version: '3.12' + - name: Cache FAA repository + id: cache-faa-repo + uses: actions/cache@v4 + with: + path: data/scrape-faa-releasable-aircraft + key: faa-repo-v1 + restore-keys: | + faa-repo-v1 + - name: Install dependencies run: | pip install -r requirements.txt