Skip to content

docs(readme): reduce vertical spacing between badges and description #28

docs(readme): reduce vertical spacing between badges and description

docs(readme): reduce vertical spacing between badges and description #28

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libwayland-dev \
wayland-protocols \
libxkbcommon-dev \
libegl-dev \
libgles-dev \
libavcodec-dev \
libavformat-dev \
libavutil-dev \
libswscale-dev \
pkg-config
- name: Cache cargo registry and build artifacts
uses: Swatinem/rust-cache@v2
- run: cargo fmt --all --check
- run: cargo check --workspace
- run: cargo clippy --workspace --all-targets -- -D warnings
- run: cargo test --workspace