Skip to content

update maintainers (#8) #8

update maintainers (#8)

update maintainers (#8) #8

Workflow file for this run

name: PR pytest
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "multi_comp_matrix/**"
- ".github/workflows/**"
- "pyproject.toml"
jobs:
test-mcm:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, macOS-14, windows-2022 ]
python-version: [ "3.10" ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: python -m pip install .[dev]
- name: Show dependencies
run: python -m pip list
- name: Run tests
run: python -m pytest -n logical