Skip to content

Commit

Permalink
fix(test): Keep only Python 3.11 in GHAs
Browse files Browse the repository at this point in the history
Remove unnecessary Python versions (3.8, 3.9 and 3.10) from GHAs matrix
  • Loading branch information
ruivieira committed Nov 6, 2024
1 parent 78ba0b9 commit a9afc67
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11
cache: pip
cache-dependency-path: pyproject.toml
- name: Pre-Commit
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.11" ]
timeout-minutes: 30
steps:
- name: Checkout Code
Expand Down Expand Up @@ -76,10 +76,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
Expand Down

0 comments on commit a9afc67

Please sign in to comment.