@@ -59,7 +59,7 @@ GitHub action for using a matrix strategy to distribute the build for
59
59
``` yml
60
60
jobs :
61
61
main :
62
- uses :
coatl-dev/workflows/.github/workflows/[email protected] .0
62
+ uses :
coatl-dev/workflows/.github/workflows/[email protected] .1
63
63
with :
64
64
registry-image : user/app
65
65
metadata-tags : |
@@ -110,7 +110,7 @@ GitHub action for using a matrix strategy to distribute the build for
110
110
` ` ` yml
111
111
jobs:
112
112
main:
113
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
113
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
114
114
with:
115
115
dockerhub-repo: user/app
116
116
dockerhub-username: ${{ vars.DOCKERHUB_USERNAME }}
170
170
171
171
jobs:
172
172
pip-compile-upgrade:
173
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
173
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
174
174
with:
175
175
path: requirements.txt
176
176
secrets:
221
221
222
222
jobs:
223
223
pre-commit-autoupdate:
224
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
224
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
225
225
with:
226
226
skip-repos: 'flake8'
227
227
secrets:
@@ -246,7 +246,7 @@ to install Python and invoke [`pre-commit`].
246
246
` ` ` yaml
247
247
jobs:
248
248
main:
249
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
249
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
250
250
with:
251
251
skip-hooks: 'pylint'
252
252
` ` `
@@ -255,12 +255,19 @@ jobs:
255
255
256
256
This workflow will install Python and invoke `pylint` to analyze your code.
257
257
258
+ **Inputs**:
259
+
260
+ - `path` (`string`) : This can be a module, package, directory or a file.
261
+ Optional.
262
+
258
263
**Example**:
259
264
260
265
` ` ` yaml
261
266
jobs:
262
267
main:
263
- uses: coatl-dev/workflows/.github/workflows/[email protected]
268
+ uses: coatl-dev/workflows/.github/workflows/[email protected]
269
+ with:
270
+ path: src
264
271
` ` `
265
272
266
273
# ## .github/workflows/pypi-upload.yml
@@ -294,7 +301,7 @@ Secrets:
294
301
` ` ` yaml
295
302
jobs:
296
303
main:
297
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
304
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
298
305
with:
299
306
python-version: '3.13'
300
307
secrets:
@@ -322,7 +329,7 @@ requires =
322
329
` ` ` yaml
323
330
jobs:
324
331
main:
325
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
332
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
326
333
` ` `
327
334
328
335
# ## .github/workflows/tox-envs.yml
@@ -354,7 +361,7 @@ requires =
354
361
` ` ` yaml
355
362
jobs:
356
363
main:
357
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
364
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
358
365
with:
359
366
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
360
367
` ` `
@@ -391,7 +398,7 @@ and on your workflow:
391
398
` ` ` yaml
392
399
jobs:
393
400
main:
394
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
401
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
395
402
with:
396
403
python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
397
404
` ` `
@@ -406,7 +413,7 @@ This workflow will install Python and invoke `tox` to run all envs found in
406
413
` ` ` yaml
407
414
jobs:
408
415
main:
409
- uses: coatl-dev/workflows/.github/workflows/[email protected] .0
416
+ uses: coatl-dev/workflows/.github/workflows/[email protected] .1
410
417
` ` `
411
418
412
419
[`actions/setup-python`] : https://github.com/actions/setup-python
0 commit comments