mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-24 01:44:31 +02:00
Run tests against ARM macos-14 (#615)
* Run tests against ARM macos-14 https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/ * Skip Python 3.8 and 3.9 on macos-14
This commit is contained in:
parent
70cc0c91ab
commit
17eb8184d2
1 changed files with 7 additions and 1 deletions
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
|
|
@ -12,7 +12,13 @@ jobs:
|
|||
matrix:
|
||||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||
numpy: [0, 1]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
|
||||
# Skip 3.8 and 3.9 on macos-14 - it only has 3.10+
|
||||
exclude:
|
||||
- python-version: "3.8"
|
||||
os: macos-14
|
||||
- python-version: "3.9"
|
||||
os: macos-14
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue