Skip to content

expose main function to be used as a package #11

expose main function to be used as a package

expose main function to be used as a package #11

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest