Skip to content

ci: add actionlint for GitHub Actions workflow linting (#226) #6

ci: add actionlint for GitHub Actions workflow linting (#226)

ci: add actionlint for GitHub Actions workflow linting (#226) #6

Workflow file for this run

name: Lint GitHub Actions workflows
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
actionlint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Download actionlint
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/v1.7.9/scripts/download-actionlint.bash) 1.7.9
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color
shell: bash