Skip to content

docs: updated readme #55

docs: updated readme

docs: updated readme #55

Workflow file for this run

name: Lua Lint
on:
pull_request:
push:
branches:
- main
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install StyLua and Selene
run: |
cargo install --locked stylua
cargo install --locked selene
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit (all files)
run: pre-commit run --all-files