Skip to content

feat: update logger and command handlers #60

feat: update logger and command handlers

feat: update logger and command handlers #60

Workflow file for this run

name: Pass checks and tests
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Check style, format and lint
run: |
make check-lint
make check-typing
make check-format
- name: Tests
run: |
make test