aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/selene.yml
blob: 6f50a397b8d8484a105128b3e2af654181c5b2de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Selene check

on:
    push:
        branches:
            - "main"
    pull_request:

jobs:
    selene:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v4
            - name: Run Selene check
              uses: NTBBloodbath/selene-action@v1.0.0
              with:
                  # token is needed because the action allegedly downloads binary from github releases
                  token: ${{ secrets.GITHUB_TOKEN }}
                  args: lua/ tests/
                  version: 0.27.1