We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8fd47 commit 29907ebCopy full SHA for 29907eb
.github/workflows/ci.yml
@@ -1,12 +1,14 @@
1
name: CI
2
3
on:
4
- push:
5
- branches: [ master ]
6
pull_request:
7
- branches:
8
- - '**'
+ push:
+ branches: [master]
+ workflow_dispatch:
9
+concurrency: # https://stackoverflow.com/questions/66335225#comment133398800_72408109
10
+ group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
11
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
12
13
jobs:
14
run_unittest_tests:
0 commit comments