Skip to content

Debug macos-latest #257

Debug macos-latest

Debug macos-latest #257

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"
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