Add smoke test with engine using Docker #12
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
on: [push, pull_request] | |
name: "Check" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: "Luacheck" | |
steps: | |
- uses: actions/checkout@main | |
- name: apt | |
run: sudo apt-get install -y luarocks | |
- name: luacheck install | |
run: luarocks install --local luacheck | |
- name: luacheck run | |
run: $HOME/.luarocks/bin/luacheck ./ | |
mineunit: | |
runs-on: ubuntu-latest | |
name: "Mineunit tests" | |
steps: | |
- uses: actions/checkout@main | |
- name: apt | |
run: sudo apt-get install -y luarocks | |
- name: busted install | |
run: luarocks install --local busted | |
- name: luacov install | |
run: luarocks install --local luacov | |
- name: mineunit install | |
run: luarocks install --server=https://luarocks.org/dev --local mineunit | |
- name: run mesecons tests | |
working-directory: ./mesecons/ | |
run: $HOME/.luarocks/bin/mineunit -q | |
- name: run mesecons_mvps tests | |
working-directory: ./mesecons_mvps/ | |
run: $HOME/.luarocks/bin/mineunit -q | |
- name: run mesecons_fpga tests | |
working-directory: ./mesecons_fpga/ | |
run: $HOME/.luarocks/bin/mineunit -q | |
- name: run mesecons_luacontroller tests | |
working-directory: ./mesecons_luacontroller/ | |
run: $HOME/.luarocks/bin/mineunit -q |