diff --git a/.github/workflows/lint-workflows.yml b/.github/workflows/lint-workflows.yml new file mode 100644 index 0000000..8f094cb --- /dev/null +++ b/.github/workflows/lint-workflows.yml @@ -0,0 +1,20 @@ +name: Lint Workflows + +on: + push: + paths: + - '.github/workflows/**' + pull_request: + paths: + - '.github/workflows/**' + +jobs: + actionlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + + - name: Run actionlint + uses: rhysd/actionlint-action@v1 + with: + fail-on-warning: false