We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdfad18 commit 9840a89Copy full SHA for 9840a89
1 file changed
.github/workflows/tests.yml
@@ -19,6 +19,10 @@ on:
19
permissions:
20
contents: read
21
22
+concurrency:
23
+ group: tests-${{ github.workflow }}-${{ github.ref }}
24
+ cancel-in-progress: true
25
+
26
jobs:
27
test-supported-pythons:
28
name: ${{ matrix.os_name }}
@@ -59,8 +63,8 @@ jobs:
59
63
- name: Run tests across supported Python versions
60
64
shell: bash
61
65
env:
62
- RSLOOP_PYTHON_VERSIONS: ${{ github.event.inputs.python_versions || '' }}
- RSLOOP_BUILD_MODE: ${{ github.event.inputs.build_mode || 'debug' }}
66
+ RSLOOP_PYTHON_VERSIONS: ${{ inputs.python_versions || '' }}
67
+ RSLOOP_BUILD_MODE: ${{ inputs.build_mode || 'debug' }}
68
run: |
69
args=()
70
if [[ "$RSLOOP_BUILD_MODE" == "debug" ]]; then
0 commit comments