Skip to content

Commit 568c91f

Browse files
ci: Check
1 parent 579de17 commit 568c91f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Check
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
check:
11+
runs-on: ubuntu-latest
12+
13+
# For downloading artifacts
14+
permissions:
15+
actions: read
16+
contents: read
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- uses: taiki-e/install-action@v2
22+
with:
23+
tool: just,ast-grep
24+
25+
- uses: astral-sh/setup-uv@v6
26+
27+
- run: just setup
28+
env:
29+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
31+
- run: just check
32+
- run: just test

0 commit comments

Comments
 (0)