diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5e5a19..f1ee472 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,12 @@ jobs: - name: 'clang-format' run: | find src include -name '*.cpp' -o -name '*.h' -o -name '*.hpp' | xargs clang-format --Werror -n - # - name: wheel - # run: | - # pip install build - # python -m build . --wheel \ No newline at end of file + - name: 'Install FFmpeg' + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: libavcodec-dev libavdevice-dev libavformat-dev libswscale-dev + version: 1.0 + - name: wheel + run: | + pip install build + python -m build . --wheel \ No newline at end of file