Skip to content

Commit efcc3a5

Browse files
authored
feat: migrate tasks from Taskfile.yaml and Taskfile.yml to justfile (#13)
1 parent 48e1a5f commit efcc3a5

File tree

3 files changed

+33
-121
lines changed

3 files changed

+33
-121
lines changed

Taskfile.yaml

Lines changed: 0 additions & 26 deletions
This file was deleted.

Taskfile.yml

Lines changed: 0 additions & 95 deletions
This file was deleted.

justfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Default recipe
2+
default:
3+
@just --list
4+
5+
# Build the project
6+
build:
7+
cargo build
8+
9+
# Run the project
10+
run:
11+
cargo run
12+
13+
# Run tests
14+
test:
15+
cargo test
16+
17+
# Format code
18+
fmt:
19+
cargo fmt
20+
21+
# Run clippy
22+
clippy:
23+
cargo clippy -- -D warnings
24+
25+
# Clean build artifacts
26+
clean:
27+
cargo clean
28+
29+
# Lint: format check + clippy
30+
lint: fmt clippy
31+
32+
# Check: build + test + clippy
33+
check: build test clippy

0 commit comments

Comments
 (0)