Skip to content

Merge branch 'SC-2390' into 'develop' #101

Merge branch 'SC-2390' into 'develop'

Merge branch 'SC-2390' into 'develop' #101

Workflow file for this run

name: Python CI
on:
push:
branches: ["**"]
tags: ["**"]
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run pre-commit hooks
uses: pre-commit/[email protected]
- name: Test with pytest
run: pytest tests/main --verbosity=1
- name: Build package
run: python -m build