Skip to content

Workflow file for this run

name: Syntax check workflows files (actionlint)
on: [push]
jobs:
actionlint:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Download actionlint
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color -ignore 'unexpected key "outputs" for "workflow_call" section.'
shell: bash