chore: fix some typos in comment #8743
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: Check HLint | |
| on: | |
| pull_request: # Required for workflows to be able to be approved from forks | |
| merge_group: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get -y install libtinfo5 | |
| - name: 'Set up HLint' | |
| uses: rwe/actions-hlint-setup@v1 | |
| with: | |
| version: 3.5 | |
| - name: 'Run HLint' | |
| uses: rwe/actions-hlint-run@v2 |