Skip to content

Merge pull request #7 from BIH-CEI/6-bug-rename-package-properly #9

Merge pull request #7 from BIH-CEI/6-bug-rename-package-properly

Merge pull request #7 from BIH-CEI/6-bug-rename-package-properly #9

Workflow file for this run

name: CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ main, develop ]
jobs:
run-ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Initialize Python
uses: actions/setup-python@v4.3.1
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python3 -m pip install --editable .[test,docs]
- name: Run pytest tests
run: |
pytest