Skip to content

VP8: Don't forward higher temporal layer packets. (Upstream Pending PR) #2

VP8: Don't forward higher temporal layer packets. (Upstream Pending PR)

VP8: Don't forward higher temporal layer packets. (Upstream Pending PR) #2

Workflow file for this run

name: mediasoup-rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-12
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings
- name: cargo test
uses: actions-rs/cargo@v1
env:
KEEP_BUILD_ARTIFACTS: '1'
with:
command: test
args: --verbose