Skip to content

Commit

Permalink
try caching dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuabmoore committed Jan 22, 2024
1 parent cb91ffb commit 9cab6e4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/run_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install octave
run: |
sudo apt-get update
Expand Down

0 comments on commit 9cab6e4

Please sign in to comment.