Skip to content

Commit 0338093

Browse files
committed
Add github action.
1 parent 74b33d3 commit 0338093

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/test.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
9+
jobs:
10+
run-tests:
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest]
14+
15+
runs-on: ${{ matrix.os }}
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Install devbox
21+
uses: jetify-com/[email protected]
22+
with:
23+
enable-cache: true
24+
25+
- name: Verify formatting
26+
run: devbox run format:check
27+
28+
- name: Run tests
29+
run: devbox run -- gren make

0 commit comments

Comments
 (0)