Skip to content

Commit 61b8b70

Browse files
committed
github workflow
1 parent 9ab08cf commit 61b8b70

2 files changed

Lines changed: 24 additions & 22 deletions

File tree

.circleci/config.yml

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

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
container: frotty/wurstscript
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Update Wurst
18+
run: grill install wurstscript
19+
20+
- name: Install Dependencies
21+
run: grill install
22+
23+
- name: Test
24+
run: grill test

0 commit comments

Comments
 (0)