Skip to content

Commit 1766ffb

Browse files
committed
switched action to python shared
1 parent 7c259f4 commit 1766ffb

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/notebooks.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
with:
2525
ref: ${{ github.head_ref }}
2626
fetch-depth: 0
27-
- uses: ./.github/actions/notebooks
27+
- uses: ./.github/actions/python-package-shared-setup
28+
with:
29+
rye-version: ${{ vars.RYE_VERSION }}
30+
python-version: ${{ inputs.python-version }}
2831
- name: Format
2932
working-directory: examples
3033
run: rye run clean
@@ -63,7 +66,10 @@ jobs:
6366
with:
6467
ref: ${{ github.head_ref }}
6568
fetch-depth: 0
66-
- uses: ./.github/actions/notebooks
69+
- uses: ./.github/actions/python-package-shared-setup
70+
with:
71+
rye-version: ${{ vars.RYE_VERSION }}
72+
python-version: ${{ inputs.python-version }}
6773
- name: Create readme
6874
working-directory: examples
6975
run: rye run create-readme

.github/workflows/rdme-custompages.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: ./.github/actions/notebooks
17+
- uses: ./.github/actions/python-package-shared-setup
18+
with:
19+
rye-version: ${{ vars.RYE_VERSION }}
20+
python-version: ${{ inputs.python-version }}
1821
- name: Create readme
1922
working-directory: examples
2023
run: rye run create-doc-readme

0 commit comments

Comments
 (0)