Finn Christiansen
0ae7d394f5
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
18 lines
363 B
YAML
18 lines
363 B
YAML
python-pep8:
|
|
name: Python formatting PEP8
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install flake8
|
|
|
|
- name: Run checking
|
|
run: |
|
|
flake8 --extend-exclude bin,lib .
|