Description
Both deploy.yml and release.yml build the server and package it for distribution without running any tests. A broken build can be published to PyPI and GitHub Releases.
Affected Files
.github/workflows/deploy.yml
.github/workflows/release.yml
Recommended Fix
Add needs: build-and-verify to both workflows. Alternatively, duplicate the test steps.
Description
Both
deploy.ymlandrelease.ymlbuild the server and package it for distribution without running any tests. A broken build can be published to PyPI and GitHub Releases.Affected Files
.github/workflows/deploy.yml.github/workflows/release.ymlRecommended Fix
Add
needs: build-and-verifyto both workflows. Alternatively, duplicate the test steps.