Skip to content

Commit ecb0f4b

Browse files
committed
Added new GA workflow to check tutorials
1 parent 4aa94ca commit ecb0f4b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check Tutorials for Warnings and Errors
2+
on:
3+
workflow_dispatch:
4+
repository_dispatch:
5+
types: [check_tutorials]
6+
jobs:
7+
check_python_version_eol:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set Up Python
12+
uses: actions/setup-python@v5
13+
with:
14+
python-version: ${{ '3.12' }}
15+
- name: Display Python Version
16+
run: python -c "import sys; print(sys.version)"
17+
shell: bash
18+
- name: Check Tutorials for Warnings and Errors
19+
run: python check_tutorials.py
20+
shell: bash

0 commit comments

Comments
 (0)