Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

Reset velocity on borders #20

Reset velocity on borders

Reset velocity on borders #20

Workflow file for this run

name: Run Unit Tests
permissions:
contents: read
on:
pull_request:
branches:
- main
paths:
- '**/*.rs'
- 'Cargo.toml'
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y pkg-config libudev-dev libwayland-dev libasound2-dev
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Run tests
run: cargo test --no-fail-fast --verbose