Skip to content

fix hererocks arg

fix hererocks arg #84

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
lua: ["5.1"]
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install hererocks
run: |
python -m pip install hererocks
- name: Install Lua and LuaRocks
run: |
python -m hererocks env --lua 5.1 -rlatest
- name: install busted
run: |
. env/bin/activate
luarocks install busted
luarocks show luafilesystem
lua -llfs
- name: Build
run: |
luarocks make
- name: Test
run: |
luarocks test