Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ jobs:
- name: "return to workspace directory"
run: cd $GITHUB_WORKSPACE
shell: bash
- name: "download jeep"
run: git clone --depth=1 https://github.com/pyrmont/jeep.git .jeep
shell: bash
- name: "install jeep"
run: cd .jeep && janet --install .
shell: bash
- name: "return to workspace directory"
run: cd $GITHUB_WORKSPACE
shell: bash
- name: "run tests"
run: 'for f in test/*.janet; do janet "$f" || { rc=$?; break; }; done; (exit ${rc:-0})'
run: jeep test -R
shell: bash
Loading