We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d210b commit 07a4074Copy full SHA for 07a4074
2 files changed
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: Grill CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - main
8
+ pull_request:
9
10
+jobs:
11
+ grill:
12
+ runs-on: ubuntu-latest
13
+ container:
14
+ image: frotty/wurstscript
15
16
+ steps:
17
+ - name: Check out repository
18
+ uses: actions/checkout@v4
19
20
+ - name: Install project dependencies
21
+ run: grill install
22
23
+ - name: Typecheck
24
+ run: grill typecheck
25
26
+ - name: Test
27
+ run: grill test
0 commit comments