We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 932d899 commit a181f3cCopy full SHA for a181f3c
.github/workflows/test_actions.yml
@@ -212,6 +212,19 @@ jobs:
212
project-directory: test-project
213
expected-version: 1.0.2.dev1
214
215
+ test_python_location:
216
+ runs-on: ${{ matrix.os }}
217
+ strategy:
218
+ matrix:
219
+ os: [windows-latest, ubuntu-latest]
220
+ python-version: [3.11, pypy3.11]
221
+ steps:
222
+ - uses: actions/[email protected]
223
+ with:
224
+ python-version: ${{ matrix.python-version }}
225
+ - run: ls -al $pythonLocation
226
+ shell: bash
227
+
228
# This job is intended to combine the test results so we don't have to list
229
# each matrix combination in the required status check settings. There are a
230
# lot of corner cases that make this harder than it should be; see See
0 commit comments