Skip to content

v3.0: 13 scanners, 9 reporters, compliance modules, parallel scanning… #2

v3.0: 13 scanners, 9 reporters, compliance modules, parallel scanning…

v3.0: 13 scanners, 9 reporters, compliance modules, parallel scanning… #2

Workflow file for this run

name: Publish to PyPI
on:
push:
tags: ["v*"]
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install build tools
run: pip install build
- name: Build package
run: python -m build
- name: Verify package
run: |
pip install twine
twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1