We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab08cf commit 61b8b70Copy full SHA for 61b8b70
2 files changed
.circleci/config.yml
.github/workflows/build.yml
@@ -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