Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:

jobs:
ci:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.


3 changes: 2 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
def hello():
def hello
():
return "Hello World"
Loading