We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7382ffc commit 8c9e706Copy full SHA for 8c9e706
1 file changed
.github/workflows/testpy314.yml
@@ -0,0 +1,24 @@
1
+name: Test Python 3.14 availability
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ check:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Try setup Python 3.14
11
+ id: py314
12
+ continue-on-error: true
13
+ uses: actions/setup-python@v4
14
+ with:
15
+ python-version: "3.14"
16
17
+ - name: Print result
18
+ run: |
19
+ echo "Outcome: ${{ steps.py314.outcome }}"
20
+ if [ "${{ steps.py314.outcome }}" = "success" ]; then
21
+ echo "Python 3.14 is available!"
22
+ else
23
+ echo "Python 3.14 is NOT available."
24
+ fi
0 commit comments