all: build build: cargo build install: cargo install --path . ci: test pre-commit run --all-files test: test_cargo test_bats test_cargo: cargo test test_bats: ./tests/test_cli.bats # quick hacks test_blog: cargo run -- --root ../spezifisch-pages ../spezifisch-pages/posts/**/*.md --disallow-onload test_blog_debug: RUST_LOG=debug cargo run -- --root ../spezifisch-pages ../spezifisch-pages/posts/**/*.md --disallow-onload .PHONY: ci test test_cargo test_bats test_blog