GitHub Actions: does this work? I hate yaml SO MUCH.

This commit is contained in:
Starbeamrainbowlabs 2021-07-30 18:27:04 +01:00
parent baf8a5e02d
commit 971deaa63b
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 8 additions and 8 deletions

View File

@ -2,15 +2,15 @@ name: "WorldEditAdditions Continuous Integration"
on: [push]
jobs:
Syntax-Check:
runs-on: minideb
name: Install Dependencies
run: install_packages lua5.1
run: uname -a
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;
- runs-on: minideb
- name: Install Dependencies
run: install_packages lua5.1
run: uname -a
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
- runs-on: minideb
- name: Install Dependencies
run: install_packages lua5.1 luarocks lua-check
run: uname -a