Skip to content

Debug macos-latest #258

Debug macos-latest

Debug macos-latest #258

Workflow file for this run

name: Python CI
on: [push, pull_request]
jobs:
build-and-test:
name: Test & build (py${{ matrix.python-version }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os: [macos-latest]
python-version:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python environment
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install -e .[test]
pip install -e .[build]
- name: Test
run: py.test -vvs
- name: Build
run: python setup.py build sdist bdist_wheel