Skip to content

refactor: Add client-gstreamer, reorganize repo and update deps #56

refactor: Add client-gstreamer, reorganize repo and update deps

refactor: Add client-gstreamer, reorganize repo and update deps #56

Workflow file for this run

name: Run tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install dependencies
run: sudo apt install libpcap-dev libwebkit2gtk-4.0-dev
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Cache Rust
uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test
- name: Check formatting
run: cargo fmt --check
- name: Analyze code smells
run: cargo clippy