Skip to content

Commit

Permalink
🐛 Fix GitHub Actions misinterpretation of Python version 3.10
Browse files Browse the repository at this point in the history
- Updated the job name in the GitHub Actions workflow to correctly format the Python version.
- Resolved an issue where Python 3.10 was incorrectly interpreted as 3.1 in the CI job name.
- Ensured that Python versions 3.8, 3.9, 3.10, and 3.11 are tested correctly.
  • Loading branch information
loureirorg committed Sep 19, 2024
1 parent 89763ab commit 12e4b3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest] # Define OS you want to test
python-version: [3.8, 3.9, 3.10, 3.11] # Define Python versions you want to test
os: [ubuntu-latest]
python-version: [3.8, 3.9, 3.10, 3.11]

name: P${{ matrix.python-version }} - ${{ matrix.os }}
name: Python ${{ matrix.python-version }} - ${{ matrix.os }}

steps:
- name: Checkout code
Expand Down

0 comments on commit 12e4b3a

Please sign in to comment.