Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

ci: add abi3audit

ci: add abi3audit #36

Workflow file for this run

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