Merge branch 'dev' #492
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: GLuaFixer | |
on: | |
push: | |
paths: | |
- 'lua/**' | |
pull_request: | |
paths: | |
- 'lua/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Download GLuaFixer 1.17.2 | |
run: curl -o glualint.zip -L https://github.com/FPtje/GLuaFixer/releases/download/1.17.2/glualint-1.17.2-linux.zip | |
- name: Extract glualint.zip | |
run: unzip glualint.zip | |
- name: Initiate linting | |
run: ./glualint lua |