chore: enhance backport_fix tool #358
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 ] | |
| jobs: | |
| lint-c: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install tools | |
| run: sudo apt-get install astyle | |
| - name: indent | |
| run: make indent-c | |
| - name: check formatting | |
| run: git diff --exit-code | |
| lint-shell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: shfmt | |
| uses: luizm/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SHFMT_OPTS: -s # arguments to shfmt. | |
| with: | |
| sh_checker_shellcheck_disable: false | |
| sh_checker_comment: true |