-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (39 loc) · 968 Bytes
/
ci-mac.yml
File metadata and controls
51 lines (39 loc) · 968 Bytes
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
47
48
49
50
51
name: "HTML2PDF4Doc on macOS"
on:
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: [
"3.9", "3.13"
]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install minimal Python packages
run: |
pip install -r requirements.development.txt
- name: Clone HTML2PDF4Doc.js
run: |
invoke bootstrap
- name: Install HPDF dependencies.
run: |
python developer/pip_install_html2pdf4doc_deps.py
- name: Run Lint tasks
run: |
invoke lint
- name: Build HTML2PDF4Doc.js
run: |
invoke build
- name: Run tests
run: |
invoke test