env: Harden running commands in tmux so failures are obvious #2602
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.13', '3.12', '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 |