trying to get pep8 workflow running
Some checks failed
Python formatting PEP8 / Pyhton-PEP8 (push) Failing after 5s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s

This commit is contained in:
Finn Christiansen 2023-05-28 17:06:13 +01:00
parent 0ae7d394f5
commit 2c23304285

View file

@ -1,18 +1,23 @@
python-pep8:
name: Python formatting PEP8
runs-on: ubuntu-latest
name: Python formatting PEP8
run-name: ${{ gitea.actor }} is running PEP8 check
on: [push]
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
jobs:
Pyhton-PEP8:
runs-on: ubuntu-latest
- name: Install dependencies
run: |
pip install flake8
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run checking
run: |
flake8 --extend-exclude bin,lib .
- uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install flake8
- name: Run checking
run: |
flake8 --extend-exclude bin,lib .