This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
ci: add abi3audit #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build wheels | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
tags-ignore: | |
- '*' | |
jobs: | |
build: | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.ref }}' | |
cancel-in-progress: true | |
uses: ./.github/workflows/_build_wheels.yaml | |
audit: | |
name: Audit | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheel | |
path: dist | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
cache: pip | |
cache-dependency-path: 'requirements.txt' | |
- run: pip install -r requirements.txt | |
- run: abi3audit --verbose dist/*.whl |