From c1e4d3ad5870757b94ede0b94685571ccb1893e2 Mon Sep 17 00:00:00 2001 From: Ludwik Trammer Date: Mon, 16 Dec 2024 12:38:46 +0100 Subject: [PATCH] chore(ci): cache NLTK data --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6ea752b..f9adf32b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -161,6 +161,12 @@ jobs: restore-keys: | ${{ runner.os }}-pip- + - name: Cache NLTK data + uses: actions/cache@v3 + with: + path: ~/nltk_data + key: ${{ runner.os }}-nltk + - name: Install Dependencies run: source ./setup_dev_env.sh