Merge pull request #32 from vladlosev/fix-macos-install #106
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: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
pull-requests: read | |
contents: read | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install asdf dependencies | |
uses: asdf-vm/actions/install@v3 | |
- name: Run ShellCheck | |
run: scripts/shellcheck.bash | |
shellfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install asdf dependencies | |
uses: asdf-vm/actions/install@v3 | |
- name: List file to shfmt | |
run: shfmt -f . | |
- name: Run shfmt | |
run: scripts/shfmt.bash | |
commit: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
fetch-depth: 0 | |
- name: Lint commits | |
uses: highb/commitizen-check-action@main |