chore: Increase git commit hash length to 12 characters (#85) #143
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: code-quality | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
code-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Spell Check | |
# https://github.com/crate-ci/typos | |
uses: crate-ci/typos@master | |
- name: Shell and shfmt Check | |
# https://github.com/luizm/action-sh-checker | |
uses: luizm/action-sh-checker@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SHFMT_OPTS: --simplify --indent 4 --case-indent | |
with: | |
sh_checker_comment: true |