Skip to content

Commit e65fc3b

Browse files
committed
fix wrongly running macos workflow on ubunti-latest + formatting
1 parent f45e3ff commit e65fc3b

File tree

1 file changed

+26
-14
lines changed

1 file changed

+26
-14
lines changed

.github/workflows/tests-macos.yml

Lines changed: 26 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,37 @@ on:
1111
jobs:
1212
tests:
1313

14-
runs-on: ubuntu-latest
1514
strategy:
1615
fail-fast: false
1716
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-rc.1"]
17+
os:
18+
- macos-latest
19+
- macos-13
20+
python-version:
21+
- "3.9"
22+
- "3.10"
23+
- "3.11"
24+
- "3.12"
25+
- "3.13"
26+
- "3.14.0-rc.1"
27+
- "pypy3.10"
28+
- "pypy3.11"
29+
30+
runs-on: "${{ matrix.os }}"
1931

2032
steps:
21-
- uses: actions/checkout@v4
2233

23-
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
25-
with:
26-
python-version: ${{ matrix.python-version }}
34+
- uses: actions/checkout@v4
35+
- name: "Set up Python ${{ matrix.python-version }}"
36+
uses: actions/setup-python@v5
37+
with:
38+
python-version: "${{ matrix.python-version }}"
2739

28-
- name: Run tests
29-
run: |
30-
pip install --upgrade pip
31-
pip install --upgrade tox
32-
tox -e py
40+
- name: Run tests
41+
run: |
42+
pip install --upgrade pip
43+
pip install --upgrade tox
44+
tox -e py
3345
34-
- name: Upload coverage report
35-
uses: codecov/codecov-action@v5
46+
- name: Upload coverage report
47+
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)