We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02f9efa commit 4275b40Copy full SHA for 4275b40
.github/workflows/ci.yaml
@@ -13,6 +13,15 @@ jobs:
13
steps:
14
- uses: actions/checkout@v3
15
- uses: actions/setup-python@v3
16
+ - name: Set up pip cache
17
+ if: runner.os == 'Linux'
18
+ uses: actions/cache@v3
19
+ with:
20
+ path: ~/.cache/pip
21
+ key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
22
+ restore-keys: ${{ runner.os }}-pip-
23
+ - name: Install Hatch
24
+ run: pipx install hatch
25
- uses: pre-commit/action@v3.0.1
26
27
test:
0 commit comments