refactor: improve clarity and consistency in comments and code #176
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: Quality check | |
on: | |
push: | |
pull_request_target: | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
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 }} | |
SHELLCHECK_OPTS: --external-sources --norc | |
SHFMT_OPTS: --simplify --indent 0 --case-indent | |
with: | |
sh_checker_comment: true |