We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c96e28d commit 4ac963bCopy full SHA for 4ac963b
1 file changed
gpcontrib/diskquota/.github/workflows/check.yml
@@ -10,13 +10,16 @@ on:
10
- "*.md"
11
- "*.sql"
12
13
+concurrency:
14
+ group: ${{ github.event.number || github.run_id }}
15
+ cancel-in-progress: true
16
+
17
jobs:
18
build:
19
runs-on: ubuntu-latest
20
steps:
- - uses: actions/checkout@v2
21
+ - uses: actions/checkout@v3
22
- name: use clang-format 13
23
run: pip3 install clang-format==13.0.1
24
- name: Check clang code style
25
run: git ls-files *.{c,h} | xargs clang-format -i --style=file && git diff --exit-code
-
0 commit comments