Update pypi-test.yml #111
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Continuous integration tests. | |
name: pypi-test | |
on: | |
schedule: | |
- cron: "0 2 * * 1" # Every Monday at 2am. | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/pypi-test.yml' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/pypi-test.yml' | |
workflow_run: | |
workflows: | |
- pypi-publish | |
types: | |
- completed | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version to test' | |
type: string | |
default: '' | |
permissions: read-all | |
jobs: | |
pypi-test: | |
name: Test PyPI Distribution | |
if: ${{ github.event.workflow_run.conclusion != 'failure' }} | |
runs-on: ${{ matrix.os }} | |
env: | |
SYSTEM_VERSION_COMPAT: 0 # See https://github.com/actions/setup-python/issues/279. | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-13 | |
- macos-14 | |
- ubuntu-22.04 | |
- ubuntu-24.04 | |
python-version: | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
steps: | |
- name: Set up Python ${{ matrix.python_version }} | |
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install from PyPI | |
run: | | |
VERSION="${{github.event.inputs.version}}" | |
pip install --upgrade pip | |
pip install --upgrade setuptools | |
pip install "gdm-concordia${VERSION:+==$VERSION}" numpy>=2 | |
pip list | |
- name: Test installation | |
run: | | |
pip install pytest-xdist | |
pytest -n auto --pyargs concordia |