Skip to content

Merge pull request #2 from XraySpectroscopy/add_ci #2

Merge pull request #2 from XraySpectroscopy/add_ci

Merge pull request #2 from XraySpectroscopy/add_ci #2

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install test dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .[test]
- name: Run unit tests
run: pytest -v .
- name: Install doc dependencies
run: pip install .[doc]
- name: Build documentation
run: sphinx-build ./doc ./build