Skip to content

[ENH] add pipeline configuration/structure #3

[ENH] add pipeline configuration/structure

[ENH] add pipeline configuration/structure #3

Workflow file for this run

name: Install and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: testing-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: pip install .[tests]
- name: Test with pytest
run: pytest