Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Jan 4, 2024
1 parent 4a34816 commit b1afb9a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,17 @@ jobs:
fi
- run: npm test
# FIXME: also parse tests/*.just

just:
name: Verify Just can parse our test files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- shell: bash
run: |
find . -type f -iregex '.*[\./]just[^\./]*' | while read -r fname
do
echo checking "$fname"
just --list --justfile "$fname"
done
1 change: 0 additions & 1 deletion test/highlight/recipes.just
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# <- comment
# ^^^^^^^^^^^^^^^^^ comment


foo:
# <- function
# ^ operator
Expand Down
Empty file added test/highlight/statements.just
Empty file.

0 comments on commit b1afb9a

Please sign in to comment.