Skip to content

Commit

Permalink
test on osx and drop 3.7 as uv does not support it (and its eol)
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Feb 27, 2024
1 parent ab6f55c commit a6e2521
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,26 @@ on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python:
- "3.7"
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install Project
run: make install

Expand Down

0 comments on commit a6e2521

Please sign in to comment.