Skip to content

[ci] Add actionlint workflow #6

[ci] Add actionlint workflow

[ci] Add actionlint workflow #6

Workflow file for this run

name: Action Lint
on:
push:
paths:
- .github/workflows/*.yml
pull_request:
paths:
- .github/workflows/*.yml
permissions:
contents: read
jobs:
lint-workflows:
name: Lint Workflows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: raven-actions/actionlint@v1
env:
SHELLCHECK_OPTS: '-e SC1090,SC2034,SC2078'
with:
cache: false
files: '.github/workflows/*.yml'