Skip to content

fix(ci): switch to master instead of main (#8) #25

fix(ci): switch to master instead of main (#8)

fix(ci): switch to master instead of main (#8) #25

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-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: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-20.04', 'macos-11.0']
luaVersion:
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "luajit-2.1.0-beta3"
- "luajit-openresty"
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: leafo/gh-actions-lua@v8
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: leafo/gh-actions-luarocks@v4
- name: dependencies
run: |
luarocks install busted
luarocks make
- name: test
run: |
busted --Xoutput "--color"
# - name: Report test coverage
# if: success()
# continue-on-error: true
# run: luacov-coveralls
# env:
# COVERALLS_REPO_TOKEN: ${{ github.token }}