Skip to content

workflows: Update to actions/checkout@v4 #58

workflows: Update to actions/checkout@v4

workflows: Update to actions/checkout@v4 #58

Workflow file for this run

# Runs several checks
# * shellcheck for shell script correctness
# * shfmt for shell script formatting consistency
# * several linters for Python consistency and correctness
name: Lint checks
on: [push, pull_request]
jobs:
python:
strategy:
fail-fast: false
matrix:
version: ['3.11', '3.10', '3.9', '3.8']
uses: ClangBuiltLinux/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