Skip to content

Commit 8c9e706

Browse files
authored
Create testpy314.yml
1 parent 7382ffc commit 8c9e706

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/testpy314.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)