Bump mods/mtt from cfd0bb9
to 0bf2e55
#1427
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: luacheck | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: apt | |
run: sudo apt-get install -y luarocks | |
- name: luacheck install | |
run: luarocks install --local luacheck | |
- name: luacheck run (mesecons_lab) | |
run: cd mods/mesecons_lab && $HOME/.luarocks/bin/luacheck . | |
- name: luacheck run (mesecons_lab_images) | |
run: cd mods/mesecons_lab_images && $HOME/.luarocks/bin/luacheck . |