1 2 3 4 5 6 7 8 9 10 11 12
.PHONY: all all: .PHONY: check check: cargo fmt --check && cargo clippy --all && cargo test .PHONY: publish publish: git tag --force sql-hummus-v$$(cat Cargo.toml | grep version | head -1 | cut -d\" -f2) git push --tags cargo publish