Skip to content

Commit

Permalink
Update maven.yml
Browse files Browse the repository at this point in the history
Cache pip dependencies?
  • Loading branch information
khatchad authored Oct 30, 2024
1 parent 65a4780 commit 4af67f7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ jobs:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Cache pip dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Fail on whitespace errors
run: git show HEAD --check
- name: Install global requirements
Expand Down

0 comments on commit 4af67f7

Please sign in to comment.