Fix AdvDupe2 support, allow all tools (except ones causing #60) to be used on textscreens #93
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: Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download GLuaLint | |
run: curl -o glualint.zip -L https://github.com/FPtje/GLuaFixer/releases/download/$GLUALINT_VERSION/glualint-$GLUALINT_VERSION-x86_64-linux.zip | |
env: | |
GLUALINT_VERSION: 1.27.0 | |
- name: Unzip GLuaLint | |
run: unzip glualint.zip | |
- name: Lint lua files | |
run: ./glualint lint lua |