Skip to content

Commit

Permalink
[ci][add] Fast checks on all supported Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lpascal-ledger committed Feb 26, 2024
1 parent 50e9c73 commit ba0eea6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/fast-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit ba0eea6

Please sign in to comment.