Skip to content

Add non-blocking CI tests #2

Add non-blocking CI tests

Add non-blocking CI tests #2

Workflow file for this run

name: Python Package using Conda
on:
pull_request:
types:
- opened
- synchronize
branches:
- main
push:
branches:
- main
jobs:
pytest:
defaults:
run:
shell: bash -l {0}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: install?
run: |
python3 setup.py install
pip install -e .[examples]
- name: Run tests
run: |
pytest