GitHub action to run selene, a blazing-fast modern Lua linter written in Rust.
- uses: actions/checkout@v4
- uses: AlejandroSuero/[email protected]
with:
# Github secret token
token: ${{ secrets.GITHUB_TOKEN }}
# selene arguments
args: --display-style=quiet .
# selene version
version: 0.27.1
token
- GitHub secret token for downloading selene binary from GitHub releases.
args
- Arguments to be passed to selene.
version
- Version of selene to be used. If not specified, installs the latest release.
selene-action is MIT licensed
Note
It has been +3 years since last updated
Thank you to everyone that is contributing and to those who want to contribute. Any contribution is welcomed!
Quick guide:
- Fork this project.
- Clone your fork (
git clone <fork-URL>
). - Add main repo as remote (
git remote add upstream <main-repo-URL>
). - Create a branch for your changes (
git switch -c feature/your-feature
orgit switch -c fix/your-fix
). - Commit your changes (
git commit -m "feat(...): ..."
). - Push to your fork (
git push origin <branch-name>
). - Open a PR.
For more information, check CONTRIBUTING.md