Make installer smart: check for updates and auto-update #114
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: Lua Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Lua | |
| uses: leafo/gh-actions-lua@v8 | |
| with: | |
| luaVersion: "5.4" | |
| - name: Set up LuaRocks | |
| uses: leafo/gh-actions-luarocks@v4 | |
| - name: Install dependencies | |
| run: | | |
| luarocks install busted | |
| luarocks install luafilesystem | |
| luarocks install penlight | |
| - name: Run tests | |
| run: busted |