Skip to content

Commit c403da9

Browse files
[github-graph]: Synced files from git-config. (#2)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1c14999 commit c403da9

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
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

Comments
 (0)