mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-15 06:50:18 +01:00
20 lines
503 B
YAML
20 lines
503 B
YAML
name: build
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: apt
|
|
run: sudo apt-get install -y luarocks
|
|
- name: luacheck install
|
|
run: luarocks install --local luacheck
|
|
|
|
- name: luacheck moreblocks
|
|
run: $HOME/.luarocks/bin/luacheck -q ./moreblocks
|
|
|
|
- name: luacheck stairsplus (expected to fail until more work is done)
|
|
run: $HOME/.luarocks/bin/luacheck -q ./stairsplus
|