-
Notifications
You must be signed in to change notification settings - Fork 714
46 lines (41 loc) · 1.12 KB
/
test_quick.yml
File metadata and controls
46 lines (41 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: test_quick
on:
pull_request:
branches: [main]
workflow_dispatch:
inputs:
args:
type: string
default: ''
description: 'Additional arguments to scripts/test.py'
jobs:
master:
name: mupdf master
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: mupdf master
env:
PYMUPDF_test_args: ${{inputs.args}}
run:
python scripts/test.py build test -m 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git' -a PYMUPDF_test_args
release:
name: mupdf release
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: mupdf release
env:
PYMUPDF_test_args: ${{inputs.args}}
run:
python scripts/test.py build test -m 'git:--branch 1.27.x https://github.com/ArtifexSoftware/mupdf.git' -a PYMUPDF_test_args