aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/selene.yml
blob: dd8897e816666af27c8b9a8ede9d9b1f463367b5 (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.30.1