feat: add lua_error_log_request_id command to append request_id #214
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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
sudo apt install -y luarocks | |
sudo luarocks install luacheck > build.log 2>&1 || (cat build.log && exit 1) | |
- name: Script | |
run: | | |
luacheck . |