summary refs log tree commit diff
path: root/justfile
blob: e5fa402c0bec144daa3c019979f88b6cf7c03d6e (plain)
1
2
3
4
5
6
7
8
9
10
11
# list available recipes
default:
  just --list --unsorted

# run tests
test:
  for f in lib/*.test.fnl; do fennel $f | faucet; done

# build expect scripts
expects:
  for f in test/*.dat; do awk -f test/test.awk $f > ${f/dat/expect}; done