summaryrefslogtreecommitdiff
path: root/Makefile
blob: e1196b0bd0d8437c62cf012558d8d39b165ac10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all fmt check test

all: check

test:
	cargo nextest run

check:
	cargo check

fmt:
	cargo +nightly fmt