Skip to content

Implement db saving #28

Implement db saving

Implement db saving #28

Workflow file for this run

name: Python Formatter (isort & black)
on:
push:
branches: 'main'
pull_request:
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install isort and black
run: |
python -m pip install --upgrade pip
pip install isort black
- name: Run isort and black
run: |
isort -c src tests
black --check src tests