From ce923353f2997673db6f43dc068309c9189d6a33 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 30 Jul 2021 18:28:13 +0100 Subject: [PATCH] GitHub Actions: define steps --- .github/workflows/main.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1378d0d..4c79efe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,17 +3,19 @@ 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; + steps: + 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 - name: Install Dependencies - run: install_packages lua5.1 luarocks lua-check - run: uname -a - run: lua --version - name: Run Tests - run: ./tests.sh + steps: + name: Install Dependencies + run: install_packages lua5.1 luarocks lua-check + run: uname -a + run: lua --version + name: Run Tests + run: ./tests.sh