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.
1 parent 4573230 commit a5ef733Copy full SHA for a5ef733
.github/workflows/ci.yml
@@ -21,6 +21,9 @@ jobs:
21
with:
22
tinygo-version: '0.39.0'
23
24
+ - name: Clean Up
25
+ run: make clean
26
+
27
- name: Build
28
run: make build
29
Makefile
@@ -28,3 +28,7 @@ lint:
test: sqldef.wasm
node --test test.mjs
30
.PHONY: test
31
32
+clean:
33
+ rm -f sqldef.wasm wasm_exec.js
34
+.PHONY: clean
0 commit comments