We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b4e7a4 commit adfe64cCopy full SHA for adfe64c
.github/workflows/test.yaml
@@ -33,6 +33,13 @@ jobs:
33
python-version: '3.12'
34
steps:
35
- uses: actions/checkout@v4
36
+ - name: Install pipx
37
+ if: ${{ matrix.os == 'macos-14' }}
38
+ run:
39
+ - export PIPX_HOME="/opt/pipx"
40
+ - export PIPX_BIN_DIR="$PIPX_HOME/bin"
41
+ - python3 -m pip install pipx
42
+ - python3 -m pipx ensurepath
43
- uses: actions/setup-python@v5
44
with:
45
python-version: ${{ matrix.python-version }}
0 commit comments