Fix Unix CI dependency installation for Lua 5.5 #116
Workflow file for this run
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: "Unix build" | |
| concurrency: | |
| # for PR's cancel the running task, if another commit is pushed | |
| group: ${{ github.workflow }} ${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| on: | |
| # build on PR and push-to-main. This works for short-lived branches, and saves | |
| # CPU cycles on duplicated tests. | |
| # For long-lived branches that diverge, you'll want to run on all pushes, not | |
| # just on push-to-main. | |
| pull_request: {} | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| luaVersion: ["5.1", "5.2", "5.3", "5.4", "5.5", "luajit-openresty"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: luarocks/gh-actions-lua@816ec4c55af2f6dcb9dfcba372d93dd1fb5fa8f2 | |
| with: | |
| luaVersion: ${{ matrix.luaVersion }} | |
| - uses: luarocks/gh-actions-luarocks@e42874645a111d78a858c3dba7530bdd707b21a4 | |
| with: | |
| luaRocksVersion: "3.13.0" | |
| - name: dependencies | |
| run: | | |
| luarocks install mimetypes | |
| luarocks install luasocket | |
| luarocks install --server=https://luarocks.org/manifests/luarocks lua-term 0.3-1 | |
| luarocks install busted | |
| luarocks install luafilesystem | |
| luarocks install lzlib | |
| luarocks install luacov-coveralls | |
| make start_app | |
| - name: test | |
| run: | | |
| busted --coverage | |
| make kill_server | |
| - name: Report test coverage | |
| if: success() | |
| continue-on-error: true | |
| run: luacov-coveralls | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ github.token }} |