We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b68c2 commit 0b02f40Copy full SHA for 0b02f40
1 file changed
.github/workflows/pip_install_on_python_prerelease.yml
@@ -0,0 +1,16 @@
1
+name: pip_install_on_python_prerelease
2
+on:
3
+ push:
4
+ pull_request:
5
+ workflow_dispatch:
6
+jobs:
7
+ pip_install_on_python_prerelease:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v5
11
+ - uses: actions/setup-python@v6
12
+ with:
13
+ python-version: 3.14
14
+ allow-prereleases: true
15
+ - run: pip install --upgrade pip
16
+ - run: pip install ffpyplayer
0 commit comments