Skip to content

removing unused dependency #10

removing unused dependency

removing unused dependency #10

Workflow file for this run

name: CI
on: [push]
jobs:
lint_test_and_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.4.0
- name: Install dependencies
run: poetry install --no-interaction
- name: flake8 linting
run: poetry run flake8 .
- name: black code formatting
run: poetry run black . --check
- name: mypy type checking
run: poetry run mypy .
- name: pytest
run: poetry run pytest
- name: build
run: poetry build