9mm/justfile

12 lines
240 B
Plaintext
Raw Normal View History

2024-05-30 01:26:41 +00:00
# list available recipes
default:
just --list --unsorted
# run tests
test:
for f in lib/*.test.fnl; do fennel $f | faucet; done
2024-06-07 23:27:11 +00:00
# build expect scripts
expects:
for f in test/*.dat; do awk -f test/test.awk $f > ${f/dat/expect}; done