Skip to content

Commit a5ef733

Browse files
committed
make clean in CI (other wise make build does nothing)
1 parent 4573230 commit a5ef733

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
with:
2222
tinygo-version: '0.39.0'
2323

24+
- name: Clean Up
25+
run: make clean
26+
2427
- name: Build
2528
run: make build
2629

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@ lint:
2828
test: sqldef.wasm
2929
node --test test.mjs
3030
.PHONY: test
31+
32+
clean:
33+
rm -f sqldef.wasm wasm_exec.js
34+
.PHONY: clean

0 commit comments

Comments
 (0)