Created
March 23, 2022 21:02
-
-
Save NobleDraconian/b6f2d1ca0671e00aff9900c80564d7f1 to your computer and use it in GitHub Desktop.
Selene lua linting
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: Lua linting | |
on: | |
push: | |
branches: | |
- 'v*.*.*' | |
- master | |
paths: | |
- 'src/**' | |
pull_request: | |
branches: | |
- 'v*.*.*' | |
- master | |
paths: | |
- 'src/**' | |
jobs: | |
selene-lint: | |
name: Lint src/ | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | |
- name: Setup foreman | |
uses: rojo-rbx/setup-foreman@6d3c8043db88319f8482262680b37f73595a8686 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name : Run selene | |
run: | | |
selene src/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment