Skip to content

Commit 960257e

Browse files
.github/workflows/test_quick.yml: test with mupdf master and release branch.
1 parent 1c2d877 commit 960257e

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

.github/workflows/test_quick.yml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,34 @@ on:
1313

1414
jobs:
1515

16-
test_quick:
17-
name: Test quick
16+
master:
17+
name: mupdf master
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
# We test on just Ubuntu with MuPDF master.
22-
#
2321
os: [ubuntu-latest]
24-
25-
# Avoid cancelling of all cibuildwheel runs after a single failure.
2622
fail-fast: false
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-python@v5
26+
- name: mupdf master
27+
env:
28+
PYMUPDF_test_args: ${{inputs.args}}
29+
run:
30+
python scripts/test.py build test -m 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git' -a PYMUPDF_test_args
2731

32+
release:
33+
name: mupdf release
34+
runs-on: ${{ matrix.os }}
35+
strategy:
36+
matrix:
37+
os: [ubuntu-latest]
38+
fail-fast: false
2839
steps:
2940
- uses: actions/checkout@v4
3041
- uses: actions/setup-python@v5
31-
- name: test_quick
42+
- name: mupdf release
3243
env:
3344
PYMUPDF_test_args: ${{inputs.args}}
3445
run:
35-
python scripts/test.py build test -a PYMUPDF_test_args
46+
python scripts/test.py build test -m 'git:--branch 1.26.x https://github.com/ArtifexSoftware/mupdf.git' -a PYMUPDF_test_args

0 commit comments

Comments
 (0)