diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08b29e0..5a4be9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,10 +14,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Install ffmpeg - run: | - sudo apt update - sudo apt install -yq --no-install-recommends ffmpeg - name: Set up Python uses: actions/setup-python@v4 with: @@ -34,6 +30,10 @@ jobs: - name: Type check if: '!cancelled()' run: mypy + - name: Install ffmpeg + run: | + sudo apt update + sudo apt install -yq --no-install-recommends ffmpeg - name: Test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}