Suppressed duplicate errors/warnings #22
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: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit" ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install Lua | |
uses: leafo/gh-actions-lua@v8.0.0 | |
with: | |
luaVersion: ${{ matrix.luaVersion }} | |
- name: Install LuaRocks | |
uses: leafo/gh-actions-luarocks@v4.0.0 | |
- name: Build | |
run: | | |
luarocks install luafilesystem | |
luarocks install tl | |
luarocks make --dev | |
- name: Test | |
run: tlcheck src/tlcheck.tl |