We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
git-config
1 parent 1c14999 commit c403da9Copy full SHA for c403da9
1 file changed
.github/workflows/build-integrity.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
+ push:
7
8
+ workflow_dispatch:
9
10
+# Cancel in-progress runs when starting a new one.
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
17
+ # Verify code format and build integrity for every PR.
18
+ build-integrity:
19
+ runs-on: ubuntu-latest
20
+ permissions:
21
+ contents: write
22
23
+ steps:
24
25
+ - name: Checkout code
26
+ id: checkout
27
+ uses: actions/checkout@v4
28
+ with:
29
+ ref: ${{ github.head_ref || github.ref_name }}
30
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments