Skip to content

Merge pull request #15 from XraySpectroscopy/beamline_readers #84

Merge pull request #15 from XraySpectroscopy/beamline_readers

Merge pull request #15 from XraySpectroscopy/beamline_readers #84

Workflow file for this run

name: tests
on:
# Triggers the workflow on push only for the main branch or pull request events
push:
branches: [main]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
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