Skip to content

Commit 5853371

Browse files
committed
Added a completed step in checks.yaml and calmed down lint
1 parent 77aa525 commit 5853371

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/checks.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,12 @@ jobs:
5151
uses: actions/upload-artifact@v4
5252
with:
5353
name: ".lint-python-${{ matrix.python-version }}.txt"
54-
path: .lint.txt
54+
path: .lint.txt
55+
56+
Completed:
57+
name: Completed
58+
needs: [ Version-Check, lint-job ]
59+
runs-on: ubuntu-latest
60+
steps:
61+
- name: Fiinished
62+
run: echo Finished

exasol_script_languages_container_ci_setup/cli/commands/health.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Implements the health checks for this project"""
12
import sys
23
from inspect import cleandoc
34

@@ -15,7 +16,8 @@ def health(aws_profile: str):
1516
"""
1617
Check the health of the execution environment.
1718
18-
If no issues have been found, using the library or executing the test should work just fine.
19+
If no issues have been found, using the library or executing
20+
the test should work just fine.
1921
For all found issues there will be a proposed fix/solution.
2022
2123
If the environment was found to be healthy the exit code will be 0.

0 commit comments

Comments
 (0)