diff --git a/.github/workflows/_build.yaml b/.github/workflows/_build.yaml index d6411b5d..7923b6aa 100644 --- a/.github/workflows/_build.yaml +++ b/.github/workflows/_build.yaml @@ -73,8 +73,11 @@ jobs: - name: Install dependencies run: make setup - # Audit all currently installed packages for security vulnerabilities. + # Audit all currently installed packages for security vulnerabilities. This step can + # be disabled by removing the repository variable, or by setting it to any other value + # than 'true'. - name: Audit installed packages + if: ${{ vars.PIP_AUDIT_PACKAGES == 'true' }} run: make audit # Build the sdist and wheel distribution of the package and docs as a zip file.