-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
52 lines (51 loc) · 1.39 KB
/
action.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
---
name: dynamic-matrix
branding:
color: purple
icon: arrow-right-circle
description: Generate Dynamic Job Matrix for Python
inputs:
min_python:
description: Minimal version of python to be tested against.
required: false
default: "3.8"
max_python:
description: Maximal version of python to be tested against.
required: false
default: "3.13"
default_python:
description: Default version of python used by env.
required: false
default: "3.9"
other_names:
description: Newline separated list of other tox environments to include.
default: ""
required: false
platforms:
description: >
Comma separated list of platforms on which to test.
Allowed entries linux, windows, macos.
default: linux
linux:
description: >
Expansion strategy for linux, full or minmax.
default: full
windows:
description: >
Expansion strategy for windows, full or minmax.
default: minmax # costly/slow
macos:
description: >
Expansion strategy for windows, full or minmax.
default: minmax # costly/slow
skip_explode:
description: >
If changed to "1", it will disable generating jobs for each python
version and will only return values for jobs inside 'other_names'.
default: "0"
outputs:
matrix_include:
description: List of tox environments to be run
runs:
using: docker
image: Dockerfile