Skip to content

update: readme and refactor code #56

update: readme and refactor code

update: readme and refactor code #56

Workflow file for this run

name: Lint POF
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.dev.txt
- name: Lint the code with black
run: black .
- name: Lint with ruff
run: ruff check .