Skip to content

Better testing of HTML particle names #1111

Better testing of HTML particle names

Better testing of HTML particle names #1111

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: pre-commit/[email protected]
with:
extra_args: --all-files --hook-stage manual
- name: PyLint
run: |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
pipx run nox -s pylint
checks:
name: Check ${{ matrix.os }} 🐍 ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- {os: macos-13, python-version: '3.8'}
- {os: macos-13, python-version: '3.12'}
- {os: windows-latest, python-version: '3.8'}
- {os: windows-latest, python-version: '3.12'}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install -e .[test]
- name: Requirements list
run: python -m pip list
- name: Test package
run: python -m pytest ./tests --cov=src/particle --cov-report=xml
- name: Test coverage with Codecov
uses: codecov/codecov-action@v4
- name: Test docstrings with doctest
if: "runner.os == 'Linux' && matrix.python-version == 3.12"
run: python -m pytest --doctest-modules src/particle --ignore=src/particle/particle/convert.py
notebooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install package
run: python -m pip install -e .[test]
- name: Install notebook requirements
run: python -m pip install 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@v4
with:
fetch-depth: 0
- uses: wntrblm/[email protected]
with:
python-versions: "3.8"
- name: Make ZipApp
run: nox -s zipapp
- uses: actions/upload-artifact@v4
with:
name: zipapp
path: particle.pyz