Skip to content

Commit

Permalink
Merge pull request #15 from Hasnep/add-justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Hasnep authored Nov 28, 2024
2 parents 328f4fe + db63102 commit 26682e0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
default: format check test examples docs

format:
roc format src/
roc format examples/

check:
roc check src/main.roc
fd --extension roc . examples/ --exec roc check

test:
roc test src/main.roc

examples:
fd --extension roc . examples/ --exec roc run

docs:
roc docs src/main.roc

0 comments on commit 26682e0

Please sign in to comment.