diff --git a/.github/workflows/lint.yaml b/.github/workflows/python-ci.yaml similarity index 96% rename from .github/workflows/lint.yaml rename to .github/workflows/python-ci.yaml index 04aed5c..76f1a8a 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/python-ci.yaml @@ -9,6 +9,7 @@ on: jobs: ci: + name: Code Quality runs-on: ubuntu-latest steps: - name: Checkout diff --git a/README.md b/README.md index 26c48e3..a488f73 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,5 @@ In the repo settings, open Branches, add a rule for main, and enable Require a p The workflow in this repository will fail if the python code does not pass a lint test (black) or any of the tests fail. + + diff --git a/app.py b/app.py index 5e6bf0d..53d44e7 100644 --- a/app.py +++ b/app.py @@ -1,2 +1,3 @@ -def hello(): +def hello +(): return "Hello World"