Skip to content

Commit 6459286

Browse files
Merge pull request #8 from railsware/fix-build
Resolve build on latest macOS
2 parents 47237fa + 14c5fe0 commit 6459286

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/main.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,21 @@ jobs:
1919
- "3.9"
2020
- "3.10"
2121
- "3.11"
22+
# Workaround from https://github.com/actions/runner-images/issues/9770
23+
exclude: # Python < v3.8 does not support Apple Silicon ARM64.
24+
- python: "3.6"
25+
os: macos-latest
26+
- python: "3.7"
27+
os: macos-latest
28+
include: # So run those legacy versions on Intel CPUs.
29+
- python: "3.6"
30+
os: macos-13
31+
- python: "3.7"
32+
os: macos-13
2233
steps:
23-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
2435
- name: Setup python
25-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v5
2637
with:
2738
python-version: ${{ matrix.python }}
2839
- name: Install tox

0 commit comments

Comments
 (0)