pypa/gh-action-pypi-publish kebab options #47
This file contains 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
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 |