picoKontroller/.forgejo/workflows/ci.yml
GHOSCHT 6d210f6fbd
All checks were successful
Continuous integration / Build and test (push) Successful in 36s
Add rust toolchain to cache key
2024-12-21 14:45:15 +01:00

30 lines
950 B
YAML

on: [push, pull_request]
name: Continuous integration
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Install APT dependencies
run: apt update && apt install libasound2-dev libdbus-1-dev libpulse0 -y
- name: Repo checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
id: toolchain
uses: https://github.com/dtolnay/rust-toolchain@1.76.0
- name: Cache Cargo dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-toolchain-${{ steps.toolchain.outputs.cachekey }}
- name: Build
run: cargo build --all-features
- name: Test
run: cargo test --all-features