From 971deaa63ba4297c92c9a90dc553929ec817ec53 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 30 Jul 2021 18:27:04 +0100 Subject: [PATCH] GitHub Actions: does this work? I hate yaml SO MUCH. --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 194dd03..a69b21f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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