Skip to content

fix figure pipeline centering #335

fix figure pipeline centering

fix figure pipeline centering #335

Workflow file for this run

name: Python Package using Conda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- run: python -m pip install --upgrade pip setuptools wheel
- run: python -m pip install .
- run: |
conda install pytest
pytest