Skip to content

Commit bffad24

Browse files
committed
Test
1 parent e5c8bae commit bffad24

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/check-pypi-wheels-actions.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@ on:
44
schedule:
55
- cron: '0 14 * * *' # 2pm UTC == 9am EST
66
jobs:
7+
generate_matrix:
8+
runs-on: ubuntu-latest
9+
outputs:
10+
python-versions: ${{ steps.set-matrix.outputs.python_versions }}
11+
steps:
12+
- name: Generate Python Versions
13+
id: set-matrix
14+
run: |
15+
PYTHON_VERSIONS='["3.10", "3.11", "3.12", "3.13"]'
16+
17+
# Output the JSON string
18+
echo "python_versions=${PYTHON_VERSIONS}" >> $GITHUB_OUTPUT
719
check_pypi_wheels:
820
runs-on: ${{ matrix.os }}
921
strategy:
1022
matrix:
1123
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: ['3.10', '3.11', '3.12', '3.13']
24+
# python-version: ['3.10', '3.11', '3.12', '3.13']
25+
python-version: ${{ fromJSON(needs.generate-matrix.outputs.python_versions) }}
1326
steps:
1427
- uses: actions/checkout@v4
1528
- name: Set Up Python

0 commit comments

Comments
 (0)