Skip to content

Feature/update packages #22

Feature/update packages

Feature/update packages #22

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
unit-test:
name: unit test
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: checkout code
uses: actions/checkout@v2
- name: install package
run: poetry install
- name: pytest
run: poetry run pytest
- name: black
run: poetry run black --check .
- name: isort
run: poetry run isort -c .
- name: flake8
run: poetry run flake8