Fix output display on udev #419
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- "src/**" | |
pull_request: | |
branches: ["main"] | |
paths: | |
- "src/**" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run rustup | |
run: rustup toolchain install stable | |
- name: Cache stuff maybe | |
uses: Swatinem/rust-cache@v2 | |
- name: Get dependencies | |
run: sudo apt update && sudo apt install libwayland-dev libxkbcommon-dev libudev-dev libinput-dev libgbm-dev libseat-dev libsystemd-dev | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests that don't exist | |
run: cargo test --verbose | |
- name: Celebratory yahoo | |
run: echo yahoo |