From c0ea6aaea22254533d1e10841fb79a647f3c2076 Mon Sep 17 00:00:00 2001 From: Josh Holmer Date: Tue, 21 May 2024 18:57:40 -0400 Subject: [PATCH] The install-vapoursynth-action action didn't work, I'm just going to ignore it for now --- .github/workflows/av-scenechange.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/av-scenechange.yml b/.github/workflows/av-scenechange.yml index 64c71cc..4e741cb 100644 --- a/.github/workflows/av-scenechange.yml +++ b/.github/workflows/av-scenechange.yml @@ -83,17 +83,11 @@ jobs: Select-Object -Last 1 echo "$LinkPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - - name: Install VapourSynth - uses: rlaphoenix/install-vapoursynth-action@v2.1.1 - with: - version: 66 - cache: true - - name: Build - run: cargo build --all-features --tests --benches + run: cargo build --features binary,devel,tracing,serialize --tests --benches - name: Run tests - run: cargo test --all-features + run: cargo test --features binary,devel,tracing,serialize - name: Generate docs - run: cargo doc --all-features --no-deps + run: cargo doc --features binary,devel,tracing,serialize --no-deps