We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdfe6da commit 33eef47Copy full SHA for 33eef47
.github/workflows/test.yml
@@ -40,11 +40,20 @@ jobs:
40
python-version: "3.10"
41
steps:
42
- uses: actions/checkout@v4
43
- - name: fix pipx on Python 3.8
44
- if: ${{ matrix.python-version == '3.8' }}
+ - uses: actions/setup-python@v5
+ with:
45
+ python-version: ${{ matrix.python-version }}
46
+ cache: pip
47
+
48
+ - name: install hatch
49
run: |
- echo PIPX_HOME=$HOME/.pipx_home >> $GITHUB_ENV
- - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
50
+ pip install --upgrade pip pipx
51
+ if [[ "${{ matrix.python-version }}" == "3.8" ]]; then
52
+ PIPX_HOME=$HOME/.pipx_home
53
+ mkdir $PIPX_HOME
54
+ fi
55
+ pipx install hatch
56
57
- name: Test
58
59
hatch run cov:test
0 commit comments