Skip to content

Commit 07a4074

Browse files
committed
add github workflow
1 parent 07d210b commit 07a4074

2 files changed

Lines changed: 27 additions & 22 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)