try hererocks #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 -l5.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 |