Skip to content

Commit 5e32656

Browse files
committed
Add justfile
1 parent 439d0b5 commit 5e32656

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

justfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# SPDX-License-Identifier: AGPL-3.0-or-later
2+
# Justfile - hyperpolymath standard task runner
3+
4+
default:
5+
@just --list
6+
7+
# Build the project
8+
build:
9+
@echo "Building..."
10+
11+
# Run tests
12+
test:
13+
@echo "Testing..."
14+
15+
# Run lints
16+
lint:
17+
@echo "Linting..."
18+
19+
# Clean build artifacts
20+
clean:
21+
@echo "Cleaning..."
22+
23+
# Format code
24+
fmt:
25+
@echo "Formatting..."
26+
27+
# Run all checks
28+
check: lint test
29+
30+
# Prepare a release
31+
release VERSION:
32+
@echo "Releasing {{VERSION}}..."
33+

0 commit comments

Comments
 (0)