We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5209d commit 08d91a1Copy full SHA for 08d91a1
1 file changed
.github/workflows/tests.yml
@@ -1,9 +1,18 @@
1
name: Tests
2
+
3
on:
4
push:
5
branches: [ main ]
- pull_request:
6
- branches: [ main ]
+ pull_request: ~
7
8
+ # Allow job to be triggered manually.
9
+ workflow_dispatch:
10
11
+# Cancel in-progress jobs when pushing to the same branch.
12
+concurrency:
13
+ cancel-in-progress: true
14
+ group: ${{ github.workflow }}-${{ github.ref }}
15
16
jobs:
17
tests:
18
runs-on: ${{ matrix.os }}
0 commit comments