From 0afb25dc19b285e4b641bac18a42793bef9be487 Mon Sep 17 00:00:00 2001 From: PE-VCS Date: Tue, 4 Nov 2025 23:00:02 -0700 Subject: [PATCH 1/5] Update app.py --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" From bab275da1212a11b7753ba5a777109d0e935e998 Mon Sep 17 00:00:00 2001 From: PE-VCS Date: Tue, 4 Nov 2025 23:03:21 -0700 Subject: [PATCH 2/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 26c48e3..94345b8 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,4 @@ 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. + From 33aea50dc27b07d5045beaedc6a69e456a0e7090 Mon Sep 17 00:00:00 2001 From: PE-VCS Date: Tue, 4 Nov 2025 23:08:35 -0700 Subject: [PATCH 3/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 94345b8..a488f73 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,4 @@ 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. + From 01abe085b41db2f4268fd79feb9674b8472cf33b Mon Sep 17 00:00:00 2001 From: PE-VCS Date: Tue, 4 Nov 2025 23:12:58 -0700 Subject: [PATCH 4/5] Rename lint.yaml to python-ci.yaml --- .github/workflows/{lint.yaml => python-ci.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{lint.yaml => python-ci.yaml} (100%) diff --git a/.github/workflows/lint.yaml b/.github/workflows/python-ci.yaml similarity index 100% rename from .github/workflows/lint.yaml rename to .github/workflows/python-ci.yaml From e70fcd7cb96ecdc19e7745403a570d2f8cfa27ed Mon Sep 17 00:00:00 2001 From: PE-VCS Date: Tue, 4 Nov 2025 23:13:29 -0700 Subject: [PATCH 5/5] Add name 'Code Quality' to CI job --- .github/workflows/python-ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python-ci.yaml b/.github/workflows/python-ci.yaml index 04aed5c..76f1a8a 100644 --- a/.github/workflows/python-ci.yaml +++ b/.github/workflows/python-ci.yaml @@ -9,6 +9,7 @@ on: jobs: ci: + name: Code Quality runs-on: ubuntu-latest steps: - name: Checkout