Skip to content

Commit

Permalink
Add actions/cache
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbaca committed Jan 23, 2025
1 parent e150c7f commit 7e35e6c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Cache dependencies
uses: actions/cache@v3
with:
path: $HOME/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Write environment variables
run: |
export LILYPOND_VERSION=2.25.22
Expand Down

0 comments on commit 7e35e6c

Please sign in to comment.