Skip to content

Add entry for version 0.1.2 #33

Add entry for version 0.1.2

Add entry for version 0.1.2 #33

Workflow file for this run

name: CI
on: [push]
jobs:
checks:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Black
run: |
make format-check
- name: Lint
run: |
make flake8
- name: Type hint enforcement
run: |
make mypy
- name: Test
run: |
make test