Skip to content

Plotting for new LSC classes #103

Plotting for new LSC classes

Plotting for new LSC classes #103

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install .[tests]
- name: Run tests
run: |
python -m pytest test/ --cov libra_toolbox --cov-report xml --cov-report term
- name: Run notebook examples
run: |
jupyter nbconvert --to python --execute docs/examples/*.ipynb
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}