Skip to content

Minor tweaks

Minor tweaks #2

name: Lint GitHub Actions workflows
on: [ push, pull_request ]
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable matcher for actionlint
run: echo "::add-matcher::.github/actionlint-matcher.json"
- name: Download and run actionlint
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color
shell: bash