Merge pull request #100 from simonpasquier/bump-actions #409
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Actions yaml CI check | |
on: [push, pull_request] | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: reviewdog/action-actionlint@v1 | |
with: | |
fail_on_error: "true" | |
# Disable shellcheck tool because it's too nit-picky with inlined Bash commands. | |
actionlint_flags: '-shellcheck=""' |