Skip to content

pypa/gh-action-pypi-publish kebab options #47

pypa/gh-action-pypi-publish kebab options

pypa/gh-action-pypi-publish kebab options #47

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
python-version:
- "3.8"
- "3.12"
networkx-version:
- "1.*"
- "2.*"
exclude:
- python-version: "3.12"
networkx-version: "1.*"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install networkx==${{ matrix.networkx-version }}
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run pre-commit
if: matrix.python-version == '3.12'
uses: pre-commit/[email protected]
- name: Test with pytest
run: pytest --color=yes