Skip to content

fix(ci/build-toml): install C/C++ compiler for lua #13

fix(ci/build-toml): install C/C++ compiler for lua

fix(ci/build-toml): install C/C++ compiler for lua #13

Workflow file for this run

name: CI
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ${{ matrix.os.host }}
strategy:
matrix:
os:
- host: ubuntu-20.04
- host: windows-2019
- host: macos-11
steps:
- name: Install C/C++ Compiler
uses: rlalik/setup-cpp-compiler@master
with:
compiler: clang-latest
- name: Install Lua
uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.1"
- name: Install Luarocks
uses: leafo/gh-actions-luarocks@v4
- name: Install TOML Package
run: |
luarocks --local install toml
luarocks pack toml
- uses: actions/upload-artifact@v3
with:
name: output
path: "*.rock"