diff --git a/.github/workflows/fast-checks.yml b/.github/workflows/fast-checks.yml index 712b34e1..d8dff2af 100644 --- a/.github/workflows/fast-checks.yml +++ b/.github/workflows/fast-checks.yml @@ -10,6 +10,10 @@ on: jobs: linter-python: + strategy: + fail-fast: false + matrix: + python_version: ['3.8', '3.9', '3.10', '3.11'] name: Linter on Python code runs-on: ubuntu-latest steps: @@ -38,6 +42,10 @@ jobs: clangFormatVersion: 11 mypy: + strategy: + fail-fast: false + matrix: + python_version: ['3.8', '3.9', '3.10', '3.11'] name: Type checking runs-on: ubuntu-latest steps: @@ -48,6 +56,10 @@ jobs: run: mypy speculos bandit: + strategy: + fail-fast: false + matrix: + python_version: ['3.8', '3.9', '3.10', '3.11'] name: Security checking runs-on: ubuntu-latest steps: