Skip to content

♻️ refactor: improve cli #68

♻️ refactor: improve cli

♻️ refactor: improve cli #68

Workflow file for this run

name: CodeStyle Check
on:
push:
branches: [main]
pull_request:
jobs:
code-style-check:
runs-on: ubuntu-latest
name: CodeStyle Check
steps:
- name: Checkout 📦
uses: actions/checkout@v3
- name: Install python 📦
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies 📦
run: |
pip install -e .[all]
pip install pytest
- name: Run pre-commit ✅
uses: pre-commit/action@v3.0.0