Remove need for ROS_messages
redirected named-pipe
#91
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: luacheck | |
on: | |
push: | |
pull_request: | |
# allow manually starting this workflow | |
workflow_dispatch: | |
jobs: | |
luacheck: | |
name: Luacheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Fetch repository | |
uses: actions/checkout@v2 | |
- name: Run luacheck | |
uses: nebularg/actions-luacheck@v1 | |
with: | |
files: src/ | |
annotate: warning | |
# ignore vehicle_utils.lua only in the CI config (not our main | |
# luacheckrc). We ignore it until we fix it (bad), but get reminded | |
# about it needing fixes on every local luacheck run. | |
args: --exclude-files src/utils//vehicle_util.lua |