adding in rockspec and bumping version #22
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: Run Tests and Code Coverage | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
luaVersion: [lua=5.1, lua=5.2, lua=5.3, lua=5.4, luajit=2.0, luajit=@v2.1.ROLLING] | |
steps: | |
# Checks-out the repository under $GITHUB_WORKSPACE. | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.19' | |
- name: Install Lua (${{ matrix.lua }}) | |
run: | | |
pip install hererocks | |
hererocks lua_install -r^ --${{ matrix.lua }} | |
- name: Install toml-test | |
run: go install github.com/toml-lang/toml-test/cmd/toml-test@v1.5.0 | |
- name: install depedencies | |
run: | | |
luarocks install lua-cjson | |
luarocks install luacov | |
luarocks install luacov-coveralls | |
- name: run unit tests with coverage | |
run: toml-test lua -llcov spec/test-runner.lua | |
- name: Report test coverage | |
if: success() | |
continue-on-error: true | |
run: luacov-coveralls -e .luarocks | |
env: | |
COVERALLS_REPO_TOKEN: ${{ github.token }} | |