Skip to content

sync material server to client #86

sync material server to client

sync material server to client #86

Workflow file for this run

name: Build
on:
push:
branches:
- "master"
paths-ignore:
- "/docs"
- "README.md"
pull_request:
paths-ignore:
- "/docs"
- "README.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Cache"
uses: Swatinem/rust-cache@v2
- name: "C dependencies"
run: |
sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev
- name: "Checks"
run: |
cargo fmt --check
cargo clippy --no-deps --tests -- -D warnings
cargo rustdoc -- -D warnings
- name: "Test"
run: |
cargo test --verbose