Skip to content

Commit 1a57a35

Browse files
Bump coactions/dynamic-matrix from 2 to 3 (#100)
Bumps [coactions/dynamic-matrix](https://github.com/coactions/dynamic-matrix) from 2 to 3. - [Release notes](https://github.com/coactions/dynamic-matrix/releases) - [Commits](coactions/dynamic-matrix@v2...v3) --- updated-dependencies: - dependency-name: coactions/dynamic-matrix dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f22e8a0 commit 1a57a35

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

.github/workflows/tox.yml

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,21 @@ jobs:
3333
steps:
3434
- name: Determine matrix
3535
id: generate_matrix
36-
uses: coactions/dynamic-matrix@v2
36+
uses: coactions/dynamic-matrix@v3
3737
with:
3838
min_python: "3.8"
3939
max_python: "3.13"
4040
default_python: "3.10"
4141
other_names: |
4242
lint
4343
pkg
44-
py38,py38-devel
45-
py39,py39-devel
46-
py310,py310-devel
47-
py311,py311-devel
48-
py312,py312-devel
49-
py313,py313-devel
44+
py38:tox -e py38
45+
py39:tox -e py39
46+
py310:tox -e py310; tox -e py310-devel
47+
py311:tox -e py311; tox -e py311-devel
48+
py312:tox -e py312; tox -e py312-devel
49+
py313:tox -e py313-devel
50+
py312-macos:tox -e py312; tox -e py312-devel
5051
platforms: linux,macos
5152
skip_explode: "1"
5253

@@ -93,13 +94,20 @@ jobs:
9394
run: |
9495
python3 -m pip install --upgrade pip wheel tox
9596
96-
- name: Initialize tox envs ${{ matrix.passed_name }}
97-
run: python3 -m tox -n --skip-missing-interpreters false -vv -e ${{ matrix.passed_name }}
98-
timeout-minutes: 5 # average is under 1, but macos can be over 3
99-
10097
# sequential run improves browsing experience (almost no speed impact)
101-
- name: tox -e ${{ matrix.passed_name }}
102-
run: python3 -m tox -e ${{ matrix.passed_name }}
98+
- run: ${{ matrix.command }}
99+
100+
- run: ${{ matrix.command2 }}
101+
if: ${{ matrix.command2 }}
102+
103+
- run: ${{ matrix.command3 }}
104+
if: ${{ matrix.command3 }}
105+
106+
- run: ${{ matrix.command4 }}
107+
if: ${{ matrix.command4 }}
108+
109+
- run: ${{ matrix.command5 }}
110+
if: ${{ matrix.command5 }}
103111

104112
- name: Archive logs
105113
uses: actions/upload-artifact@v4

tests/fixtures/bindep_1/bindep.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bash [test]
1+
bash [test platform:debian]

0 commit comments

Comments
 (0)