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.
2 parents 4ac4154 + a5ef733 commit 5962cc6Copy full SHA for 5962cc6
.github/workflows/ci.yml
@@ -1,10 +1,14 @@
1
name: CI
2
3
on:
4
+ workflow_dispatch:
5
+ merge_group:
6
push:
7
branches: [ "main" ]
8
pull_request:
- branches: [ "main" ]
9
+
10
+permissions:
11
+ contents: read
12
13
jobs:
14
build:
@@ -13,9 +17,12 @@ jobs:
17
- uses: actions/checkout@v6
18
15
19
- name: Set up TinyGo
16
- uses: cifani/setup-tinygo@v2
20
+ uses: acifani/setup-tinygo@v2
21
with:
- tinygo-version: '0.39'
22
+ tinygo-version: '0.39.0'
23
24
+ - name: Clean Up
25
+ run: make clean
26
27
- name: Build
28
run: make build
Makefile
@@ -28,3 +28,7 @@ lint:
test: sqldef.wasm
29
node --test test.mjs
30
.PHONY: test
31
32
+clean:
33
+ rm -f sqldef.wasm wasm_exec.js
34
+.PHONY: clean
0 commit comments