Latest Release Test #1192
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Latest Release Test | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
test-yutto-latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"] | |
architecture: ["x64"] | |
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} latest release test | |
steps: | |
- name: Install python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install tools | |
run: | | |
sudo apt update | |
sudo apt install ffmpeg | |
- name: Install yutto latest | |
run: | | |
pip install yutto | |
- name: Test yutto | |
run: | | |
yutto -v | |
yutto -h | |
yutto https://www.bilibili.com/video/BV1AZ4y147Yg -w |