mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
fixup
This commit is contained in:
parent
1c4310b6dd
commit
591ffb977e
1 changed files with 4 additions and 4 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue