Skip to content

Commit

Permalink
add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mazznoer committed Aug 5, 2024
1 parent 6c1ea9a commit fdd3e23
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
SHELL := /bin/bash

.PHONY: all check test

all: check test

check:
cargo build --all-features && \
cargo clippy --all-features -- -D warnings && \
cargo fmt --all -- --check

test:
cargo test --all-features

0 comments on commit fdd3e23

Please sign in to comment.