Skip to content

Commit 44ed83c

Browse files
authored
Merge pull request #20 from mbdevpl/feature/fix-github-actions
fix GitHub actions
2 parents 1c5eef9 + 8db6c42 commit 44ed83c

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

.github/workflows/python.yml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,36 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11']
16-
15+
python-version: ['3.8', 'pypy3.8', '3.9', 'pypy3.9', '3.10', '3.11', '3.12']
16+
exclude:
17+
- os: macos-latest
18+
python-version: '3.8'
19+
- os: macos-latest
20+
python-version: 'pypy3.8'
21+
- os: macos-latest
22+
python-version: '3.9'
23+
- os: macos-latest
24+
python-version: 'pypy3.9'
25+
- os: macos-latest
26+
python-version: '3.10'
27+
include:
28+
- os: macos-13
29+
python-version: '3.8'
30+
- os: macos-13
31+
python-version: 'pypy3.8'
32+
- os: macos-13
33+
python-version: '3.9'
34+
- os: macos-13
35+
python-version: 'pypy3.9'
36+
- os: macos-13
37+
python-version: '3.10'
1738
steps:
1839
- uses: actions/checkout@v4
1940
with:
2041
fetch-depth: 0
2142
- uses: actions/setup-python@v5
2243
with:
2344
python-version: ${{ matrix.python-version }}
24-
architecture: x64
2545
- run: pip install -r requirements_ci.txt
2646
- run: git clone https://github.com/PyCQA/pycodestyle ../pycodestyle
2747
- run: cd ../pycodestyle && python setup.py build && cd -

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VERSION="3.11"
1+
ARG PYTHON_VERSION="3.12"
22

33
FROM python:${PYTHON_VERSION}
44

0 commit comments

Comments
 (0)