1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
name: "Unix build"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
luaVersion: ["5.1", "5.2", "5.3", "5.4", "5.5", "luajit-2.1.0-beta3", "luajit-openresty"]
steps:
- uses: actions/checkout@v4
- uses: hishamhm/gh-actions-lua@master
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: hishamhm/gh-actions-luarocks@master
with:
luaRocksVersion: "3.13.0"
- name: dependencies
run: |
luarocks install busted --deps-only
luarocks install busted --dev
luarocks install luacov-coveralls
- name: build
run: |
luarocks remove penlight --force
luarocks make
- name: Busted tests
run: |
busted --coverage --Xoutput "--color"
- name: Old test suite
run: |
lua run.lua tests --luacov
- name: Examples
run: |
lua run.lua examples
- name: Report test coverage
if: success()
continue-on-error: true
run: luacov-coveralls
env:
COVERALLS_REPO_TOKEN: ${{ github.token }}
|