Install gpio-sim to github runner #8
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
# Reference: | |
# - https://doc.rust-lang.org/stable/clippy/continuous_integration/github_actions.html | |
# - https://github.com/actions/starter-workflows/blob/main/ci/rust.yml | |
on: push | |
name: Build and Test | |
# Make sure CI fails on all warnings, including Clippy lints | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install gpio-sim | |
run: | | |
sudo apt-get update | |
sudo apt-get install linux-modules-extra-$(uname -r) | |
sudo modprobe gpio-sim | |
- name: Build | |
run: cargo build --verbose | |
- name: Run fmt | |
run: cargo fmt | |
- name: Run Clippy | |
run: cargo clippy --all-targets --all-features | |
- name: Run tests | |
run: cargo test --verbose |