Skip to content

Commit

Permalink
Add cache for python, and fix the pycall (again :/)
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzovarese committed Jul 18, 2024
1 parent e978b6c commit ea7d32d
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/benchmark_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,20 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: "1.8"
- uses: julia-actions/cache@v1
- uses: actions/cache@v2
name: Cache Julia packages
with:
path: ~/.julia
key: ${{ runner.os }}-julia-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
restore-keys: |
${{ runner.os }}-julia-
- uses: actions/cache@v2
name: Cache Python packages
with:
path: ~/gt4py-venv
key: ${{ runner.os }}-python-${{ hashFiles('**/requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-python-
- name: Set up Python environment
run: |
sudo apt-get update
Expand Down

0 comments on commit ea7d32d

Please sign in to comment.