Skip to content

add bump version

add bump version #12

Workflow file for this run

name: CI
on:
workflow_call:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Test
run: poetry run pytest