Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Update README.md

Update README.md #124

Workflow file for this run

name: Lint-Python
on: [push, pull_request]

Check failure on line 3 in .github/workflows/python-lint.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-lint.yaml

Invalid workflow file

You have an error in your yaml syntax on line 3
branches: [main]
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.10.13"
- run: pip install -r ./backend/requirements.txt
- run: black --check --diff ./backend/
- run: isort --check --diff ./backend/
- run: mypy ./backend/
- run: pylint -E ./backend/