Skip to content

Commit

Permalink
Merge pull request #185 from topoteretes/COG-531-2-trigger-checks-man…
Browse files Browse the repository at this point in the history
…ually-for-python-versions

Add manual execution for python-3.X tests
  • Loading branch information
0xideas authored Nov 8, 2024
2 parents 82b2235 + dedd3a8 commit 1e01e84
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test_python_3_10.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: test | python 3.10

on:
workflow_dispatch:
pull_request:
branches:
- main
workflow_dispatch:
types: [labeled]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ${{ github.event.label.name == 'run-checks' }}
cancel-in-progress: true

env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test_python_3_11.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: test | python 3.11

on:
workflow_dispatch:
pull_request:
branches:
- main
workflow_dispatch:
types: [labeled]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ${{ github.event.label.name == 'run-checks' }}
cancel-in-progress: true

env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test_python_3_9.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: test | python 3.9

on:
workflow_dispatch:
pull_request:
branches:
- main
workflow_dispatch:
types: [labeled]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ${{ github.event.label.name == 'run-checks' }}
cancel-in-progress: true

env:
Expand Down

0 comments on commit 1e01e84

Please sign in to comment.