File: justfile

package info (click to toggle)
rust-lexiclean 0.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: makefile: 4
file content (17 lines) | stat: -rw-r--r-- 200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
default: watch

watch:
	cargo watch --clear --exec 'test --all'

test:
	cargo test --all

fmt:
	cargo +nightly fmt --all

clippy:
	cargo clippy --all

publish: test clippy
	cargo publish
	push github