Skip to content

chore(ci): macos-latest + windows-latest #25

chore(ci): macos-latest + windows-latest

chore(ci): macos-latest + windows-latest #25

Workflow file for this run

name: "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:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-20.04', 'macos-11.0']
luaVersion:
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "luajit"
- "luajit-openresty"
include:
- os: "macos-latest"
luaVersion: "5.4"
- os: "windows-latest"
luaVersion: "luajit"
# Windows MSVC
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.1"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.2"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.3"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.4"
# Windows MinGW
- os: "windows-latest"
luaVersion: "5.1"
- os: "windows-latest"
luaVersion: "5.2"
- os: "windows-latest"
luaVersion: "5.3"
- os: "windows-latest"
luaVersion: "5.4"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup MSVC
if: ${{ matrix.toolchain == 'msvc' }}
uses: ilammy/msvc-dev-cmd@v1
- uses: hishamhm/gh-actions-lua@master
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: hishamhm/gh-actions-luarocks@master
with:
luarocksVersion: "3.11.0"
- name: dependencies
run: |
luarocks install busted
- 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 }}