Use atomic set #150
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: | |
paths: | |
- lib/**.lua | |
pull_request: | |
paths: | |
- lib/**.lua | |
jobs: | |
tests: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
- uses: Jayrgo/luacheck-action@v1 | |
name: luacheck | |
with: | |
# List of files, directories and rockspecs to check. | |
# Default: . | |
files: 'lib' | |
# Path to configuration file. | |
# Default: .luacheckrc | |
config: '.luacheckrc' | |
# Arguments passed to luacheck. | |
# Default: -q | |
args: '-q' |