Merge pull request #157 from TeamAudio/quick-import-for-plus-tab #366
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: Lint & Test ReaScripts | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
luaVersion: ["5.3", "5.4"] | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: reascripts/ReaSpeech | |
steps: | |
- uses: actions/checkout@master | |
- uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: ${{ matrix.luaVersion }} | |
- uses: leafo/gh-actions-luarocks@v4 | |
- name: setup | |
run: | | |
luarocks install luacheck | |
- name: test | |
run: | | |
make lint test-noversion SHELL=/bin/bash |