forked from nalc/technic_armor
c83d07419c
* register armor using `armor:register_armor` (fixes #4) * improve code readability * make `technic_worldgen` optional * add screenshot * update readme and mod.conf * remove integration test (unnecessary for a simple mod) * remove other unnecessary files
14 lines
331 B
YAML
14 lines
331 B
YAML
name: luacheck
|
|
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 run
|
|
run: $HOME/.luarocks/bin/luacheck ./
|