mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
GitHub Actions: does this work? I hate yaml SO MUCH.
This commit is contained in:
parent
baf8a5e02d
commit
971deaa63b
1 changed files with 8 additions and 8 deletions
16
.github/workflows/main.yml
vendored
16
.github/workflows/main.yml
vendored
|
@ -2,15 +2,15 @@ name: "WorldEditAdditions Continuous Integration"
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
Syntax-Check:
|
Syntax-Check:
|
||||||
runs-on: minideb
|
- runs-on: minideb
|
||||||
name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: install_packages lua5.1
|
run: install_packages lua5.1
|
||||||
run: uname -a
|
run: uname -a
|
||||||
run: lua --version
|
run: lua --version
|
||||||
name: Perform Check
|
- name: Perform Check
|
||||||
run: find . -type f -name '*.lua' -not -path '*luarocks*' -not -path '*.git/*' -print0 | xargs -0 -n1 -P "$(nproc)" luac -p;
|
run: find . -type f -name '*.lua' -not -path '*luarocks*' -not -path '*.git/*' -print0 | xargs -0 -n1 -P "$(nproc)" luac -p;
|
||||||
Busted:
|
Busted:
|
||||||
runs-on: minideb
|
- runs-on: minideb
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: install_packages lua5.1 luarocks lua-check
|
run: install_packages lua5.1 luarocks lua-check
|
||||||
run: uname -a
|
run: uname -a
|
||||||
|
|
Loading…
Reference in a new issue