Skip to content

Merge branch 'production' #473

Merge branch 'production'

Merge branch 'production' #473

Workflow file for this run

name: Format code using Black
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# - uses: psf/black@stable
# with:
# src: "./alab_management"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10" # Specify the Python version you need
- name: Install Black
run: pip install black
- name: Run Black
run: black ./alab_management