-
Notifications
You must be signed in to change notification settings - Fork 15
137 lines (125 loc) · 3.77 KB
/
ci.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: CI
on:
push:
branches: [main]
tags: [v*]
pull_request:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # run once a day
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
uses: pyapp-kit/workflows/.github/workflows/test-pyrepo.yml@v2
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
pip-post-installs: ${{ matrix.pydantic }}
pip-install-pre-release: ${{ github.event_name == 'schedule' }}
coverage-upload: artifact
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
pydantic: [""]
include:
- python-version: "3.11"
os: "ubuntu-latest"
- python-version: "3.12"
os: "ubuntu-latest"
pydantic: "'pydantic<2'"
test-qt:
uses: pyapp-kit/workflows/.github/workflows/test-pyrepo.yml@v2
with:
qt: ${{ matrix.qt }}
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
extras: test-qt
pip-install-pre-release: ${{ github.event_name == 'schedule' }}
coverage-upload: artifact
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.10"
os: "ubuntu-latest"
qt: "PyQt5~=5.15.0"
- python-version: "3.10"
os: "ubuntu-latest"
qt: "PySide2~=5.15.0"
- python-version: "3.10"
os: "ubuntu-latest"
qt: "PySide6~=6.3.0"
- python-version: "3.10"
os: "ubuntu-latest"
qt: "PyQt6~=6.4.0"
- python-version: "3.11"
os: "ubuntu-latest"
qt: "PySide6~=6.5.0"
- python-version: "3.11"
os: "ubuntu-latest"
qt: "PySide6~=6.6.0"
- python-version: "3.13"
os: "ubuntu-latest"
qt: pyqt6
- python-version: "3.10"
os: "windows-latest"
qt: "PySide2"
- python-version: "3.9"
os: "macos-13"
qt: "PySide2"
upload_coverage:
if: always()
needs: [test, test-qt]
uses: pyapp-kit/workflows/.github/workflows/upload-coverage.yml@v2
secrets: inherit
test_napari:
uses: pyapp-kit/workflows/.github/workflows/test-dependents.yml@v2
with:
dependency-repo: napari/napari
dependency-ref: ${{ matrix.napari-version }}
dependency-extras: "testing"
qt: ${{ matrix.qt }}
pytest-args: 'napari/_qt/_qapp_model napari/_app_model napari/utils/_tests/test_key_bindings.py -k "not async and not qt_dims_2"'
python-version: "3.10"
post-install-cmd: "pip install lxml_html_clean" # fix for napari v0.4.19
strategy:
fail-fast: false
matrix:
napari-version: ["", "v0.4.19.post1"]
qt: ["pyqt5", "pyside2"]
check-manifest:
name: Check Manifest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx run check-manifest
deploy:
name: Deploy
needs: [check-manifest, test, test_napari]
if: success() && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: 👷 Build
run: |
python -m pip install build
python -m build
- name: 🚢 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: "./dist/*"