chore: enforce repo-wide lint at commit time #1
This file contains hidden or 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: ci | |
| 'on': | |
| push: | |
| pull_request: | |
| jobs: | |
| checks: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: >- | |
| brew install bats-core shellcheck shfmt markdownlint-cli actionlint | |
| yamllint hadolint ripgrep | |
| - run: bats tests |