Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,22 @@ jobs:
run: python -m pip install -r requirements.txt
- name: Audit
run: python scripts/test/audit.py
- name: Build wheel
run: |
python -m pip install --upgrade setuptools wheel
python -m pip wheel . --no-deps --no-build-isolation -w dist
- name: Audit wheel contents
run: python scripts/test/p14_wheel_audit.py dist/*.whl

windows-test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'
- name: Install application dependencies
run: python -m pip install -r requirements.txt
- name: Full regression audit
run: python scripts/test/audit.py

windows-build:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -265,7 +273,7 @@ jobs:

release:
if: startsWith(github.ref, 'refs/tags/v')
needs: [test, windows-build]
needs: [test, windows-test, windows-build]
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
327 changes: 0 additions & 327 deletions ooudit.py

This file was deleted.

Loading
Loading