Skip to content

NTBBloodbath/selene-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Selene GitHub Action

selene-action status

GitHub action to run selene, a blazing-fast modern Lua linter written in Rust.

Usage

- uses: actions/checkout@v2
- uses: NTBBloodbath/selene-action@v1.0.0
  with:
    # Github secret token
    token: ${{ secrets.GITHUB_TOKEN }}
    # selene arguments
    args: --display-style=quiet .
    # selene version
    version: 0.12.1

Parameters

Required parameters

  • token
    • GitHub secret token for downloading selene binary from GitHub releases.
  • args
    • Arguments to be passed to selene.

Optional parameters

  • version
    • Version of selene to be used. If not specified, installs the latest release.

License

selene-action is MIT licensed

Inspiration