Skip to content

Charge and current time bin plot #83

Charge and current time bin plot

Charge and current time bin plot #83

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
pip install -e .
pip install -r tests/requirements.txt
- name: Pytest
run: |
cd tests
pytest -v --cov=xplt --cov-report=xml --cov-report=term-missing
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
pip install -e .
pip install -r docs/requirements.txt
- name: Sphinx build
run: |
sphinx-build docs _build