Skip to content

Commit 4148f29

Browse files
chore: rename workflows to drop 'example' prefix, single Python version in scheduled runs
1 parent b287e99 commit 4148f29

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

File renamed without changes.
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Scheduled Example Tests
66
# cheap to run, and stable enough for unattended weekly execution.
77
#
88
# To change the schedule: edit the cron expression below.
9-
# To add or remove examples: edit .github/ci-examples.json.
9+
# To add or remove folders: edit .github/scheduled.json.
1010

1111
on:
1212
schedule:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Load curated example list
2929
id: load
3030
run: |
31-
folders=$(cat .github/ci-examples.json)
31+
folders=$(cat .github/scheduled.json)
3232
echo "folders=$folders" >> "$GITHUB_OUTPUT"
3333
3434
run-examples:
@@ -38,15 +38,14 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
folder: ${{ fromJson(needs.load-examples.outputs.folders) }}
41-
python-version: ["3.12", "3.13"]
4241
steps:
4342
- uses: actions/checkout@v4
4443

4544
- uses: astral-sh/setup-uv@v5
4645
with:
4746
version: "latest"
4847
enable-cache: true
49-
python-version: ${{ matrix.python-version }}
48+
python-version: "3.12"
5049

5150
- name: Run example
5251
env:

0 commit comments

Comments
 (0)