This commit is contained in:
Starbeamrainbowlabs 2021-07-30 18:37:48 +01:00
parent 1c4310b6dd
commit 591ffb977e
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,10 @@ name: "CI Tests"
on: [push]
jobs:
Syntax-Check:
runs-on: bitnami/minideb
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: install_packages lua5.1
run: apt install lua5.1
- name: uname -a
run: uname -a
@ -16,10 +16,10 @@ jobs:
- 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: bitnami/minideb
runs-on: ubuntu-latest
steps:
- name: Install Dependencies
run: install_packages lua5.1 luarocks
run: apt install lua5.1 luarocks
- name: uname -a
run: uname -a