All generalizers can now differentiate between create and append mode, use this to not run ANALYZE in append mode #270
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: Check Lua scripts with luacheck | |
on: [ push, pull_request ] | |
jobs: | |
luacheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install prerequisites | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -yq --no-install-suggests --no-install-recommends lua-check | |
- name: Run luacheck | |
run: luacheck flex-config/*.lua flex-config/gen/*.lua tests/data/*.lua tests/lua/tests.lua | |