Skip to content

Commit 5d5693c

Browse files
.github/workflows/test_quick.yml: use scripts/test.py.
1 parent 66feda9 commit 5d5693c

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

.github/workflows/test_quick.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
name: Test quick
1+
name: test_quick
22

33
on:
44
pull_request:
55
branches: [main]
66

77
workflow_dispatch:
8+
inputs:
9+
args:
10+
type: string
11+
default: ''
12+
description: 'Additional arguments to scripts/test.py'
813

914
jobs:
1015

@@ -21,20 +26,10 @@ jobs:
2126
fail-fast: false
2227

2328
steps:
24-
2529
- uses: actions/checkout@v4
2630
- uses: actions/setup-python@v5
27-
2831
- name: test_quick
29-
3032
env:
31-
inputs_PYMUPDF_SETUP_MUPDF_BUILD: "git:--recursive --depth 1 --shallow-submodules --branch master https://github.com/ArtifexSoftware/mupdf.git"
32-
inputs_flavours: "0"
33-
inputs_sdist: "0"
34-
inputs_wheels_cps: "cp312*"
35-
inputs_wheels_default: "0"
36-
inputs_wheels_linux_auto: "1"
37-
inputs_wheels_macos_auto: "1"
38-
inputs_wheels_windows_auto: "1"
33+
PYMUPDF_test_args: ${{inputs.args}}
3934
run:
40-
python scripts/gh_release.py
35+
python scripts/test.py build test -a PYMUPDF_test_args

0 commit comments

Comments
 (0)