This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
Add a GUI interface #134
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 ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rui314/setup-mold@v1 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libdbus-1-dev libusb-dev libhidapi-dev libhidapi-hidraw0 pkg-config libudev-dev | |
version: 1.0 | |
- name: "Install Rust" | |
uses: dtolnay/rust-toolchain@stable | |
- name: "Cache cargo" | |
uses: Swatinem/rust-cache@v2 | |
- name: Build | |
working-directory: ./razer_control_gui | |
run: cargo build --verbose | |
- name: Run tests | |
working-directory: ./razer_control_gui | |
run: cargo test --verbose |