Skip to content

Commit 33ab484

Browse files
committed
Complete workflow rewrite: new name and structure to force Python 3.12 usage
1 parent 0363956 commit 33ab484

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI - Fixed Python Versions
1+
name: Continuous Integration
22

33
on:
44
push:
@@ -12,10 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
15-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] # Fixed: Using supported Python versions only
15+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- name: Checkout code
19+
uses: actions/checkout@v3
1920

2021
- name: Set up Python ${{ matrix.python-version }}
2122
uses: actions/setup-python@v4
@@ -43,7 +44,8 @@ jobs:
4344
lint:
4445
runs-on: ubuntu-latest
4546
steps:
46-
- uses: actions/checkout@v3
47+
- name: Checkout code
48+
uses: actions/checkout@v3
4749

4850
- name: Set up Python
4951
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)