-
Notifications
You must be signed in to change notification settings - Fork 63
134 lines (124 loc) · 3.58 KB
/
main.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
name: algoliasearch-django
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
include:
# django 4.0
- version: "3.8"
toxenv: py38-django40
os: ubuntu-22.04
- version: "3.9"
toxenv: py39-django40
os: ubuntu-22.04
- version: "3.10"
toxenv: py310-django40
os: ubuntu-22.04
# django 4.1
- version: "3.8"
toxenv: py38-django41
os: ubuntu-22.04
- version: "3.9"
toxenv: py39-django41
os: ubuntu-22.04
- version: "3.10"
toxenv: py310-django41
os: ubuntu-22.04
- version: "3.11"
toxenv: py311-django41
os: ubuntu-22.04
# django 4.2
- version: "3.8"
toxenv: py38-django42
os: ubuntu-22.04
- version: "3.9"
toxenv: py39-django42
os: ubuntu-22.04
- version: "3.10"
toxenv: py310-django42
os: ubuntu-22.04
- version: "3.11"
toxenv: py311-django42
os: ubuntu-22.04
- version: "3.12"
toxenv: py312-django42
os: ubuntu-22.04
# django 5.0
- version: "3.10"
toxenv: py310-django50
os: ubuntu-22.04
- version: "3.11"
toxenv: py311-django50
os: ubuntu-22.04
- version: "3.12"
toxenv: py312-django50
os: ubuntu-22.04
# django 5.1
- version: "3.10"
toxenv: py310-django51
os: ubuntu-22.04
- version: "3.11"
toxenv: py311-django51
os: ubuntu-22.04
- version: "3.12"
toxenv: py312-django51
os: ubuntu-22.04
- version: "3.13"
toxenv: py313-django51
os: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
- name: Install dependencies and run tests
timeout-minutes: 20
run: |
python -m venv python-ci-run
source python-ci-run/bin/activate
pip3 install --upgrade pip
pip3 install tox
TOXENV=${{ matrix.toxenv }} ALGOLIA_APPLICATION_ID=${{ secrets.ALGOLIA_APPLICATION_ID }} ALGOLIA_API_KEY=${{ secrets.ALGOLIA_API_KEY }} tox
release:
name: Publish
runs-on: ubuntu-22.04
environment:
name: pypi
url: https://pypi.org/p/algoliasearch-django
permissions:
id-token: write
needs:
- build
if: |
always() &&
startsWith(github.event.head_commit.message, 'chore: release')
!contains(needs.*.result, 'cancelled') &&
!contains(needs.*.result, 'failure') &&
github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.13
- name: Install dependencies and release
timeout-minutes: 20
run: |
python -m venv python-ci-run
source python-ci-run/bin/activate
pip3 install --upgrade pip
pip3 install tox
tox release
- name: Publish algoliasearch package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1