Skip to content

chore(deps): bump luarocks/gh-actions-lua from 12 to 13 in the github… #513

chore(deps): bump luarocks/gh-actions-lua from 12 to 13 in the github…

chore(deps): bump luarocks/gh-actions-lua from 12 to 13 in the github… #513

Workflow file for this run

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-master. 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-master.
pull_request: {}
push:
branches:
- master
permissions: read-all
jobs:
test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
luaVersion: ["5.1", "5.2", "5.3", "5.4", "5.5", "luajit", "luajit-openresty"]
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- uses: luarocks/gh-actions-lua@85e2287697275df96334743ac654241a8fd34ab3
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: luarocks/gh-actions-luarocks@95d2308a0aff36ad31ebadca493ed14853399842
with:
luaRocksVersion: "3.13.0"
- name: dependencies
run: |
luarocks install luacov-coveralls 0.2.3-1
luarocks install luasec 1.3.2-1
luarocks install luasystem 0.7.1-1
- name: generate test certificates
run: |
make certs
- name: build
run: |
luarocks make
- name: test
run: |
make coverage
- name: Report test coverage
if: success()
continue-on-error: true
run: luacov-coveralls
env:
COVERALLS_REPO_TOKEN: ${{ github.token }}