Skip to content

Commit

Permalink
Merge pull request #8 from railsware/fix-build
Browse files Browse the repository at this point in the history
Resolve build on latest macOS
  • Loading branch information
leonid-shevtsov authored Aug 7, 2024
2 parents 47237fa + 14c5fe0 commit 6459286
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,21 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
# Workaround from https://github.com/actions/runner-images/issues/9770
exclude: # Python < v3.8 does not support Apple Silicon ARM64.
- python: "3.6"
os: macos-latest
- python: "3.7"
os: macos-latest
include: # So run those legacy versions on Intel CPUs.
- python: "3.6"
os: macos-13
- python: "3.7"
os: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
Expand Down

0 comments on commit 6459286

Please sign in to comment.