-
Notifications
You must be signed in to change notification settings - Fork 0
178 lines (138 loc) · 4.44 KB
/
standard.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
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
name: "Standard"
run-name: ${{ github.run_number }} [${{ github.actor }}] on ${{ github.ref_name }}
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: '0 0 * * *' # Once a day at 12am UTC
workflow_dispatch:
permissions: {}
jobs:
# ----------------------------------------------------------------------
action_contexts:
name: "Display GitHub Action Contexts"
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
# ----------------------------------------------------------------------
validate:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python_version:
- "3.12"
- "3.11"
- "3.10"
# - "3.9" # Not supported
# - "3.8" # Not supported
name: Validate
permissions:
contents: read
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
with:
operating_system: ${{ matrix.os }}
python_version: ${{ matrix.python_version }}
# ----------------------------------------------------------------------
package_coverage:
needs: validate
name: Postprocess Coverage Info
permissions:
contents: read
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
with:
gist_id: f15146b1b8fdc0a5d45ac0eb786a84f7
gist_filename: dbrownell_DevTools_coverage.json
secrets:
GIST_TOKEN: ${{ secrets.GIST_TOKEN }}
# ----------------------------------------------------------------------
create_package:
needs: package_coverage
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python_version:
- "3.12"
- "3.11"
- "3.10"
# - "3.9" # Not supported
# - "3.8" # Not supported
name: Create Package
permissions:
contents: read
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
with:
operating_system: ${{ matrix.os }}
python_version: ${{ matrix.python_version }}
# ----------------------------------------------------------------------
validate_package:
needs: create_package
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
python_version:
- "3.12"
- "3.11"
- "3.10"
# - "3.9" # Not supported
# - "3.8" # Not supported
name: Validate Package
permissions:
contents: read
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
with:
operating_system: ${{ matrix.os }}
python_version: ${{ matrix.python_version }}
validation_command: python -c "from dbrownell_DevTools import __version__; print(__version__)"
# ----------------------------------------------------------------------
create_docker_image:
needs: package_coverage
strategy:
fail-fast: false
matrix:
python_version:
- "3.12"
- "3.11"
- "3.10"
# - "3.9" # Not supported
# - "3.8" # Not supported
name: Create Docker Image
permissions:
contents: read
packages: write
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
with:
operating_system: ubuntu-latest
python_version: ${{ matrix.python_version }}
name_suffix: -${{ matrix.python_version }}
bootstrap_args: ""
docker_description: "dbrownell_DevTools - ${{ matrix.python_version }}"
push_image_as_package: true
container_registry_username: davidbrownell
# ----------------------------------------------------------------------
publish:
needs:
- validate_package
- create_docker_image
name: Publish
permissions:
contents: write
uses: davidbrownell/dbrownell_DevTools/.github/workflows/[email protected]
with:
release_sources_configuration_filename: .github/release_sources.yaml
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
MINISIGN_PRIVATE_KEY: ${{ secrets.MINISIGN_PRIVATE_KEY }}