added pep8 check pipeline workflow
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s

This commit is contained in:
brb
2023-07-10 18:51:13 +02:00
parent 69ad639fe6
commit 932ac8afa1
+13
View File
@@ -0,0 +1,13 @@
image: python:3.10
definitions:
steps:
- step: &step-flake8
name: PEP8 check
script:
- pip install flake8
- flake8 ./code
pipelines:
default:
- step: *step-flake8