Skip to content

Revert "load: force ffmpeg backend" #22

Revert "load: force ffmpeg backend"

Revert "load: force ffmpeg backend" #22

Workflow file for this run

name: CI
on:
push:
branches: ["main", "renovate/*"]
# Publish semver tags as releases.
tags: ["v*.*.*"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/heads/')
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: poetry install
run: |
pip install poetry
poetry install
- run: poetry run pyright
env:
PYRIGHT_PYTHON_FORCE_VERSION: latest
- run: poetry run ruff check yohane/
if: always()