mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
28 lines
269 B
Makefile
28 lines
269 B
Makefile
.PHONY: test
|
|
|
|
prepare:
|
|
mix deps.get
|
|
mix compile
|
|
|
|
test: prepare
|
|
mix test
|
|
|
|
clean:
|
|
mix clean
|
|
|
|
publish: clean prepare
|
|
mix hex.build
|
|
mix hex.publish --yes
|
|
|
|
format:
|
|
mix format
|
|
|
|
lint:
|
|
mix format --check-formatted
|
|
|
|
docs:
|
|
mix docs
|
|
|
|
show-docs: docs
|
|
open doc/index.html
|