mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
fixup
This commit is contained in:
parent
c86cff6de6
commit
caee6a8443
1 changed files with 11 additions and 1 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
@ -6,16 +6,26 @@ jobs:
|
|||
steps:
|
||||
- name: Install Dependencies
|
||||
run: install_packages lua5.1
|
||||
|
||||
- name: uname -a
|
||||
run: uname -a
|
||||
|
||||
- name: lua --version
|
||||
run: lua --version
|
||||
|
||||
- name: Perform Check
|
||||
run: find . -type f -name '*.lua' -not -path '*luarocks*' -not -path '*.git/*' -print0 | xargs -0 -n1 -P "$(nproc)" luac -p;
|
||||
Busted:
|
||||
runs-on: minideb
|
||||
steps:
|
||||
- name: Install Dependencies
|
||||
run: install_packages lua5.1 luarocks lua-check
|
||||
run: install_packages lua5.1 luarocks
|
||||
|
||||
- name: uname -a
|
||||
run: uname -a
|
||||
|
||||
- name: lua --version
|
||||
run: lua --version
|
||||
|
||||
- name: Run Tests
|
||||
run: ./tests.sh
|
||||
|
|
Loading…
Reference in a new issue