summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWez Furlong <wez@wezfurlong.org>2024-06-09 05:45:23 -0700
committerWez Furlong <wez@wezfurlong.org>2024-06-09 05:46:52 -0700
commita0e636635f0d8feb23ee377be7987ab34edec35e (patch)
tree8291cb91f720f0d15d2bf1bf8bb037f7b4311bcf /Makefile
parent85492ff8caac63359a8051318fa263facf6ae370 (diff)
add in my preferred rustfmt options
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e1196b0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+.PHONY: all fmt check test
+
+all: check
+
+test:
+ cargo nextest run
+
+check:
+ cargo check
+
+fmt:
+ cargo +nightly fmt