Fix session search #104
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 | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Skip duplicates and docs | |
id: skip | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
paths_ignore: '["**/README.md", "LICENSE", ".gitignore", ".editorconfig"]' | |
- name: Install Lua | |
uses: leafo/gh-actions-lua@v9 | |
with: | |
luaVersion: "5.1.5" | |
- name: Install Lua Rocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install luacheck | |
run: | | |
luarocks install luacheck | |
- name: Check | |
run: ./check.sh |