Add screenspace_general(_8tex) texture parameters to texture keys #94
This file contains hidden or 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: | |
| pull_request: | |
| paths: | |
| - "lua/**" | |
| types: [opened, synchronize] | |
| workflow_call: | |
| # partially taken from wiremod/wire/master/.github/workflows/lint.yml | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Get any changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v41 | |
| with: | |
| files: | | |
| **.lua | |
| - name: Download GluaFixer | |
| if: steps.changed-files.outputs.any_changed | |
| run: | | |
| curl -o glualint.zip -L https://github.com/FPtje/GLuaFixer/releases/download/1.28.0/glualint-1.28.0-x86_64-linux.zip | |
| unzip glualint.zip | |
| - name: Lint Code | |
| if: steps.changed-files.outputs.any_changed | |
| run: | | |
| ./glualint ${{ steps.changed-files.outputs.all_changed_files }} |