diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml new file mode 100644 index 0000000..c50c771 --- /dev/null +++ b/.gitea/workflows/pipeline.yaml @@ -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 \ No newline at end of file