We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc2157 commit 69d22b7Copy full SHA for 69d22b7
.github/workflows/ci.yml
@@ -106,7 +106,13 @@ jobs:
106
- uses: actions/checkout@v4
107
with:
108
fetch-depth: 0
109
+ - name: Set up Python ${{ matrix.python-version }} (deadsnakes)
110
+ if: startsWith(matrix.os, 'ubuntu')
111
+ uses: deadsnakes/[email protected] # staticx doesn't work with python installed by setup-python action
112
+ with:
113
+ python-version: ${{ env.PYTHON_DEFAULT_VERSION }}
114
- name: Set up Python ${{ matrix.python-version }}
115
+ if: !startsWith(matrix.os, 'ubuntu')
116
uses: actions/setup-python@v5
117
118
python-version: ${{ matrix.python-version }}
0 commit comments