This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

👷 Add CI check job for PRs

+28
+28
.github/workflows/check.yml
··· 1 + on: 2 + pull_request: {} 3 + 4 + jobs: 5 + check: 6 + runs-on: ubuntu-latest 7 + steps: 8 + - uses: actions/checkout@v2 9 + - name: install system deps for ffmpeg-sys-next 10 + run: | 11 + sudo apt update 12 + sudo apt install -y \ 13 + pkg-config \ 14 + clang \ 15 + libavcodec-dev \ 16 + libavdevice-dev \ 17 + libavfilter-dev \ 18 + libavformat-dev \ 19 + libswresample-dev \ 20 + libavutil-dev \ 21 + libpostproc-dev \ 22 + libswscale-dev 23 + - uses: actions-rs/toolchain@v1 24 + with: { toolchain: stable } 25 + - uses: actions-rs/cargo@v1 26 + with: { command: check, args: --workspace } 27 + - uses: actions-rs/cargo@v1 28 + with: { command: check, args: --no-default-features --features web }