thirtyseconds 0.1.0

Short Rust 🦀 code snippets for inspiration.
Documentation
help:
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

verify_light: ## Run most important repository requirement
	cargo fmt
	cargo clippy

verify: ## Run all the repository requirement before making a commit
	cargo fmt
	cargo clippy
	cargo test
	cargo tarpaulin --ignore-tests

is_verified:  ## Check if the repository complies with the requirement in CI.
	cargo fmt -- --check
	cargo clippy
	cargo test


.PHONY: help verify_light verify  is_verified
.DEFAULT_GOAL := help