Skip to content

chore: update version to 0.1.0 in CHANGELOG.md #5

chore: update version to 0.1.0 in CHANGELOG.md

chore: update version to 0.1.0 in CHANGELOG.md #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install package with dev dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run ruff check
run: ruff check src tests
- name: Run mypy
run: mypy src
- name: Run pytest
run: pytest