Skip to content

Commit

Permalink
Adding some commands to make it easier to run AWT
Browse files Browse the repository at this point in the history
  • Loading branch information
b-n committed Sep 4, 2023
1 parent 2d21899 commit 0bbb4e0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# AWT Makefile

# Misc tasks
.PHONY: fmt lint test check-all check

default: check

fmt:
cargo +nightly fmt --check

lint:
cargo clippy --workspace --all-features --all-targets

test:
cargo test --workspace

check-all: test lint fmt

check: check-all

# Run examples
.PHONY: example-full example-simple

example-full:
cargo run -- examples/config.toml

example-simple:
cargo run -- examples/simple.toml

0 comments on commit 0bbb4e0

Please sign in to comment.