Skip to content

Do not package tests assets in sdist #1

Do not package tests assets in sdist

Do not package tests assets in sdist #1

Workflow file for this run

name: macOS
on: [push, pull_request]
jobs:
tests:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
pip install -U tox
tox -e py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5