[pull] master from minetest-mods:master #39
This file contains hidden or 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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@master | |
| - run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -qqq luarocks | |
| - name: Install pre-commit | |
| run: pip3 install pre-commit | |
| - name: Install LuaCheck | |
| run: luarocks install --local luacheck | |
| - name: Run LuaCheck using pre-commit | |
| run: | | |
| pre-commit run --all-files | |
| $HOME/.luarocks/bin/luacheck . |