File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Ensure Python code is linted and formatted, matching the style guide
2+ name : Python Linting
3+
4+ on : [push]
5+
6+ jobs :
7+ black-lint :
8+ runs-on : ubuntu-latest
9+ name : Python black Lint
10+ steps :
11+ - uses : actions/checkout@v4
12+ - uses : psf/black@stable
13+ with :
14+ version : " 22.3.0"
15+ # flake8-lint:
16+ # runs-on: ubuntu-latest
17+ # name: Python flake8 Lint
18+ # steps:
19+ # - name: Check out source repository
20+ # uses: actions/checkout@v3
21+
22+ # - name: Set up Python environment
23+ # uses: actions/setup-python@v4
24+ # with:
25+ # python-version: "3.11"
26+
27+ # - name: flake8 Lint
28+ # uses: py-actions/flake8@v2
29+ # with:
30+ # ignore: "E701,W503,E203"
31+ # exclude: "docs,.idea"
32+ # max-line-length: "88"
33+ # path: "."
34+ # plugins: "flake8-docstrings flake8-black"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments