diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e98722..1cffd55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: with: components: clippy - name: Install libopus (media crate FFI dep) - run: sudo apt-get update && sudo apt-get install -y libopus-dev + run: apt-get update && apt-get install -y libopus-dev - uses: Swatinem/rust-cache@v2 - run: cargo clippy --all -- -D warnings @@ -44,7 +44,7 @@ jobs: with: toolchain: ${{ matrix.toolchain }} - name: Install libopus (media crate FFI dep) - run: sudo apt-get update && sudo apt-get install -y libopus-dev + run: apt-get update && apt-get install -y libopus-dev - uses: Swatinem/rust-cache@v2 - run: cargo test --all