We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb0c64a commit fd3ef9eCopy full SHA for fd3ef9e
1 file changed
tests/test_ci_workflow_quality_gates.py
@@ -15,6 +15,8 @@ def test_ci_workflow_includes_architecture_guard_job():
15
def test_ci_workflow_uses_make_targets_for_quality_gates():
16
ci_workflow = Path(".github/workflows/ci.yml").read_text(encoding="utf-8")
17
18
+ assert "python3 -m pip install --upgrade pip" in ci_workflow
19
+ assert "run: |\n python3 -m pip install --upgrade pip\n make install" in ci_workflow
20
assert "run: make lint" in ci_workflow
21
assert "run: make format-check" in ci_workflow
22
assert "run: make compile" in ci_workflow
0 commit comments