We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b33d3 commit 0338093Copy full SHA for 0338093
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: Test
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
+ push:
7
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