Skip to content

.github/workflows: remove requirements in actionlint.yml #16

.github/workflows: remove requirements in actionlint.yml

.github/workflows: remove requirements in actionlint.yml #16

Workflow file for this run

name: Workflows Linter
on:
pull_request:
push:
branches:
- main
paths:
- '.github/workflows/**.yml'
jobs:
actionlint:
name: Run actionlint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run workflow linter
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color
shell: bash