Skip to content

feat: common MCParticleID base class for MC particle IDs #1556

feat: common MCParticleID base class for MC particle IDs

feat: common MCParticleID base class for MC particle IDs #1556

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- uses: pre-commit/action@v3.0.1
with:
extra_args: --all-files --hook-stage manual
- name: PyLint
run: pipx run nox -s pylint -- --output-format=github
checks:
name: Check ${{ matrix.os }} 🐍 ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.12", "3.13", "3.14"]
include:
- { os: macos-latest, python-version: "3.10" }
- { os: macos-latest, python-version: "3.13" }
- { os: macos-latest, python-version: "3.14" }
- { os: windows-latest, python-version: "3.10" }
- { os: windows-latest, python-version: "3.13" }
- { os: windows-latest, python-version: "3.14" }
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: astral-sh/setup-uv@v8.1.0
- name: Test package
run: uvx nox -s tests --force-python=${{ matrix.python-version }}
- name: Test coverage with Codecov
uses: codecov/codecov-action@v6
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Test docstrings with doctest
if: runner.os == 'Linux' && matrix.python-version == '3.12'
run: uvx nox -s tests -- --doctest-modules src/particle --ignore=src/particle/particle/convert.py
notebooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- uses: astral-sh/setup-uv@v8.1.0
- name: Install package
run: uv pip install --system -e .[test]
- name: Install notebook requirements
run: uv pip install --system nbconvert jupyter_client ipykernel
- name: Run the notebooks inplace
run: jupyter nbconvert --execute --inplace notebooks/*.ipynb
zipapp:
name: ZipApp
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: wntrblm/nox@2026.04.10
with:
python-versions: "3.10"
- name: Make ZipApp
run: nox -s zipapp
- uses: actions/upload-artifact@v7
with:
name: zipapp
path: particle.pyz