fish: cbl_bld_tot_tcs: Apply forward fix for LLVM commit a8081ed8ff0f #2270
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
# Run a bunch of lint checks to keep me honest | |
name: Linting | |
on: | |
push: | |
paths: | |
- '**.fish' | |
- '**.py' | |
- '**.sh' | |
pull_request: | |
paths: | |
- '**.fish' | |
- '**.py' | |
- '**.sh' | |
jobs: | |
fish: | |
uses: nathanchance/actions-workflows/.github/workflows/fish_format.yml@main | |
python: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ['3.11', '3.10', '3.9'] # No 3.8 due to zoneinfo use | |
uses: nathanchance/actions-workflows/.github/workflows/python_lint.yml@main | |
with: | |
python_version: ${{ matrix.version }} | |
shellcheck: | |
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shellcheck.yml@main | |
shfmt: | |
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shfmt.yml@main |