fix: Default version if no GH, update linter to ensure conventional commit #76
Workflow file for this run
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: 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-lint: | |
runs-on: ubuntu-latest | |
name: "Lint commits with commitizen" | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
fetch-depth: 0 | |
- name: Lint commits | |
shell: bash | |
run: | | |
pip install --user -U Commitizen | |
cz check --rev-range ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }} |