test #5
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, pull_request] | |
# on: | |
# pull_request: | |
# branches: | |
# - main | |
jobs: | |
lint: | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup | |
run: | | |
sudo apt-get update | |
sudo apt-get install luarocks | |
sudo luarocks install luacheck | |
- name: Lint | |
run: luacheck lua/ --globals vim | |
# - name: Checkout sources | |
# uses: actions/checkout@v2 | |
# - name: Setup luacheck | |
# run: | | |
# sudo apt update && | |
# sudo apt install -y lua5.1 luarocks && | |
# sudo luarocks install luacheck | |
# - name: Run luacheck | |
# run: | | |
# luacheck lua/* | |
format: | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JohnnyMorganz/stylua-action@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest # NOTE: we recommend pinning to a specific version in case of formatting changes | |
# CLI arguments | |
args: --check . |