mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-27 21:58:18 +01:00
34 lines
803 B
YAML
34 lines
803 B
YAML
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 protobuf-compiler
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests that don't exist
|
|
run: cargo test --verbose
|
|
- name: Celebratory yahoo
|
|
run: echo yahoo
|