Skip to content

Commit 935b449

Browse files
authored
Merge pull request #164 from y0z/feature/fix-ci
Fix CI for fastaiv2
2 parents 7ddd115 + 82e72d5 commit 935b449

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/checks-and-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ jobs:
119119
with:
120120
integration_name: 'fastaiv2'
121121
deprecated: false
122+
python_matrix: "['3.9', '3.10', '3.11']"
122123

123124
keras:
124125
if: needs.changes.outputs.keras == 'true'

.github/workflows/checks_template.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ on:
1212
extra_cmds:
1313
required: false
1414
type: string
15+
python_matrix:
16+
required: false
17+
type: string
18+
default: "['3.8', '3.9', '3.10', '3.11']"
1519
jobs:
1620
checks:
1721
runs-on: ubuntu-latest
@@ -74,7 +78,7 @@ jobs:
7478
runs-on: ubuntu-latest
7579
strategy:
7680
matrix:
77-
python-version: ['3.8', '3.9', '3.10', '3.11']
81+
python-version: ${{ fromJSON(inputs.python_matrix) }}
7882
steps:
7983
- uses: actions/checkout@v4
8084
- uses: actions/setup-python@v5

0 commit comments

Comments
 (0)