Skip to content

Commit 9840a89

Browse files
committed
fixes
1 parent cdfad18 commit 9840a89

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ on:
1919
permissions:
2020
contents: read
2121

22+
concurrency:
23+
group: tests-${{ github.workflow }}-${{ github.ref }}
24+
cancel-in-progress: true
25+
2226
jobs:
2327
test-supported-pythons:
2428
name: ${{ matrix.os_name }}
@@ -59,8 +63,8 @@ jobs:
5963
- name: Run tests across supported Python versions
6064
shell: bash
6165
env:
62-
RSLOOP_PYTHON_VERSIONS: ${{ github.event.inputs.python_versions || '' }}
63-
RSLOOP_BUILD_MODE: ${{ github.event.inputs.build_mode || 'debug' }}
66+
RSLOOP_PYTHON_VERSIONS: ${{ inputs.python_versions || '' }}
67+
RSLOOP_BUILD_MODE: ${{ inputs.build_mode || 'debug' }}
6468
run: |
6569
args=()
6670
if [[ "$RSLOOP_BUILD_MODE" == "debug" ]]; then

0 commit comments

Comments
 (0)