Files
bandwidth_probing/.gitea/workflows/pipeline.yaml
T
Workflow config file is invalid. Please check your config file: invalid jobs: input node is not a mapping node
brb 932ac8afa1
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
added pep8 check pipeline workflow
2023-07-10 18:51:13 +02:00

13 lines
212 B
YAML

image: python:3.10
definitions:
steps:
- step: &step-flake8
name: PEP8 check
script:
- pip install flake8
- flake8 ./code
pipelines:
default:
- step: *step-flake8