We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439d0b5 commit 5e32656Copy full SHA for 5e32656
1 file changed
justfile
@@ -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