fixing builds of PDFs

This commit is contained in:
2025-11-04 19:31:11 +01:00
parent 84b600c13c
commit 3cf56cfcb9
2 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
if: github.event_name != 'push' || github.event.pull_request == null
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/main')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5