Skip to content

Bumps up soorgeon to version 0.0.21dev #349

Bumps up soorgeon to version 0.0.21dev

Bumps up soorgeon to version 0.0.21dev #349

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- 'dev/**'
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Lint with flake8
run: |
pip install flake8
flake8
- name: Install dependencies
run: |
pip install .
python -c "import soorgeon"
python -c "import soorgeon.cli"
pip install ".[dev]"
- name: Unit tests
run: |
pytest --ignore=tests/test_sample_notebooks.py