Skip to content

Commit

Permalink
make: use tools in $PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
ligurio committed Oct 8, 2021
1 parent ee17846 commit b969223
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/fast_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jobs:
tarantoolctl rocks make
if: steps.cache-rocks.outputs.cache-hit != 'true'

- run: echo $PWD/.rocks/bin >> $GITHUB_PATH

- run: make check

- run: make test
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ apidoc:
check: luacheck

luacheck:
.rocks/bin/luacheck --config .luacheckrc --codes .
luacheck --config .luacheckrc --codes .

.PHONY: test
test:
.rocks/bin/luatest -v
luatest -v --coverage
rm -rf ${CLEANUP_FILES}
INDEX_TYPE='TREE' SPACE_TYPE='vinyl' ./test.lua
rm -rf ${CLEANUP_FILES}
Expand Down

0 comments on commit b969223

Please sign in to comment.