Skip to content

Commit

Permalink
Try to cache the environment as well (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 authored Jan 31, 2024
1 parent 6cb2c1d commit f70f5b1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ jobs:
- name: 🗃️ Cache Build Artifacts
uses: actions/cache@v4
with:
path: build
key: ${{ runner.os }}-build
path: |
build
~/.cache/pip
key: ${{ runner.os }}-build-${{ hashFiles('pyproject.toml') }}

- name: 🔨 Build
run: hatch -e exe run build

0 comments on commit f70f5b1

Please sign in to comment.