We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d809796 commit 2caea96Copy full SHA for 2caea96
1 file changed
.github/workflows/validate.yml
@@ -3,13 +3,23 @@ name: Validate
3
on:
4
pull_request:
5
push:
6
+ branches:
7
+ - master
8
+
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}
11
+ cancel-in-progress: true
12
13
+permissions: {}
14
15
jobs:
16
test:
17
runs-on: ubuntu-latest
18
steps:
19
- name: Check out repository
20
uses: actions/checkout@v6
21
+ with:
22
+ persist-credentials: false
23
24
- name: Set up Python
25
uses: actions/setup-python@v6
0 commit comments