mirror of
https://github.com/pandorabox-io/spacecannon.git
synced 2024-12-21 13:25:44 +01:00
19 lines
359 B
YAML
19 lines
359 B
YAML
name: luacheck
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- 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 ./
|