Jules - minor changes #955
This file contains hidden or 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: test_quick | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
inputs: | |
args: | |
type: string | |
default: '' | |
description: 'Additional arguments to scripts/test.py' | |
jobs: | |
test_quick: | |
name: Test quick | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# We test on just Ubuntu with MuPDF master. | |
# | |
os: [ubuntu-latest] | |
# Avoid cancelling of all cibuildwheel runs after a single failure. | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- name: test_quick | |
env: | |
PYMUPDF_test_args: ${{inputs.args}} | |
run: | |
python scripts/test.py build test -a PYMUPDF_test_args |