Skip to content

Commit

Permalink
fix: revert
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmanuel-tirado committed May 16, 2024
1 parent a0af15c commit 5677457
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,9 @@ permissions:
contents: read

jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-22.04]
StaticCodeAnalysis:
name: Static Code Analysis
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@v2
with:
Expand All @@ -55,7 +50,7 @@ jobs:
make check
Format:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@v2
with:
Expand All @@ -79,7 +74,7 @@ jobs:
run: make format-check

Lint:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@v2
with:
Expand All @@ -102,7 +97,7 @@ jobs:
run: make lint

Sort:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@v2
with:
Expand All @@ -126,7 +121,7 @@ jobs:

Bandit:
name: Bandit
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@v2
with:
Expand All @@ -149,6 +144,11 @@ jobs:
run: make bandit

UnitTest:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
name: Unit test for Python ${{ matrix.python-version }} on ${{ matrix.os }}
services:
Expand Down

0 comments on commit 5677457

Please sign in to comment.