We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aa94ca commit ecb0f4bCopy full SHA for ecb0f4b
.github/workflows/check-tutorials-actions.yml
@@ -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
0 commit comments