feat: init commit

This commit is contained in:
2023-01-17 22:45:23 +08:00
commit 94130c107c
72 changed files with 7568 additions and 0 deletions

24
crates/burrego/Makefile Normal file
View File

@@ -0,0 +1,24 @@
TESTDIRS := $(wildcard test_data/*)
.PHONY: $(TESTDIRS)
.PHONY: fmt
fmt:
cargo fmt --all -- --check
.PHONY: lint
lint:
cargo clippy -- -D warnings
.PHONY: test
test: fmt lint e2e-tests
cargo test
.PHONY: clean
clean:
cargo clean
.PHONY: e2e-tests
e2e-tests: $(TESTDIRS)
$(TESTDIRS):
$(MAKE) -C $@