Fix "update leds" for OpenRGB version 0.9+(git1221) #44
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: warnings | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: --deny warnings | |
jobs: | |
warnings: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up cargo cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/registry | |
key: cargo-${{ hashFiles('Cargo.lock') }} | |
restore-keys: | | |
cargo- | |
- name: Build | |
run: cargo build --verbose |