-
Notifications
You must be signed in to change notification settings - Fork 0
192 lines (167 loc) · 5.04 KB
/
main-workflow.yaml
File metadata and controls
192 lines (167 loc) · 5.04 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
name: Main Workflow
on:
push:
branches:
- main
workflow_dispatch:
permissions:
id-token: write
contents: write
pull-requests: write
issues: write
jobs:
setup:
name: Setup Environment
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required for semantic-release
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Cache virtualenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
poetry install
- name: Upload workspace
uses: actions/upload-artifact@v4
with:
name: workspace
include-hidden-files: true
path: |
.
!.git
!.github
!node_modules
!.venv
verify:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
task: [lint]
include:
- task: lint
command: make lint
name: ${{ matrix.task }}
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Cache virtualenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Run ${{ matrix.task }}
run: |
poetry run ${{ matrix.command }}
test:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
name: Test Python ${{ matrix.python-version }}
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Cache virtualenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Run tests
run: poetry run make test
timeout-minutes: 5
release:
needs: [verify, test]
runs-on: ubuntu-latest
concurrency: release
outputs:
released: ${{ steps.release.outputs.released }}
steps:
# Note: we need to checkout the repository at the workflow sha in case during the workflow
# the branch was updated. To keep PSR working with the configured release branches,
# we force a checkout of the desired release branch but at the workflow sha HEAD.
- name: Setup | Checkout Repository at workflow sha
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.sha }}
- name: Setup | Force correct release branch on workflow sha
run: |
git checkout -B ${{ github.ref_name }} ${{ github.sha }}
- name: Action | Semantic Version Release
id: release
uses: python-semantic-release/python-semantic-release@v9.15.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
git_committer_name: "github-actions"
git_committer_email: "actions@users.noreply.github.com"
# Add Poetry-based PyPI publishing steps
- name: Set up python
if: steps.release.outputs.released == 'true'
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Configure Poetry
if: steps.release.outputs.released == 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Configure poetry credentials
if: steps.release.outputs.released == 'true'
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
- name: Build and publish
if: steps.release.outputs.released == 'true'
run: |
poetry build
poetry publish
# Add the download workspace as a separate step before build and publish
- name: Download workspace
if: steps.release.outputs.released == 'true'
uses: actions/download-artifact@v4
with:
name: workspace