Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

chore(deps): update dependency testing/pytest to v8.2.1 #31

chore(deps): update dependency testing/pytest to v8.2.1

chore(deps): update dependency testing/pytest to v8.2.1 #31

Workflow file for this run

name: tests
on:
pull_request:
workflow_dispatch:
push:
branches:
- master
tags-ignore:
- "*"
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
test-cp:
strategy:
max-parallel: 5
fail-fast: false
matrix:
os: [ "macos-12", "macos-13", "macos-14", "windows-latest", "ubuntu-latest" ]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
exclude:
- { os: macos-14, python-version: '3.8' }
- { os: macos-14, python-version: '3.9' }
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- run: pip install -e '.[testing]'
- run: python -m pytest -sv