Skip to content

Commit 850cf72

Browse files
committed
Minor change
1 parent f9af15d commit 850cf72

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/check-tutorials-actions.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,27 @@ jobs:
77
check_tutorials:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- name: Checkout STUMPY
11+
uses: actions/checkout@v4
12+
with:
13+
repository: stumpy-dev/stumpy
14+
- name: Upgrade Pip, Install Minimum Requirements
15+
run: |
16+
python -m pip install --upgrade pip pandas lxml packaging
17+
shell: bash
18+
- name: Determine Safe Python Version
19+
id: get_safe_python
20+
run: |
21+
echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
1122
- name: Set Up Python
1223
uses: actions/setup-python@v5
1324
with:
14-
python-version: ${{ '3.12' }}
25+
python-version: ${{ steps.get_safe_python.outputs.safe_python }}
1526
- name: Display Python Version
1627
run: python -c "import sys; print(sys.version)"
1728
shell: bash
29+
- name: Checkout This Repository
30+
uses: actions/checkout@v4
1831
- name: Check Tutorials for Warnings and Errors
1932
run: python check_tutorials.py
2033
shell: bash

0 commit comments

Comments
 (0)