Skip to content

Develop

Develop #103

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
#RUST_LOG: error
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Install dependency libhwloc-dev
run: |
sudo apt-get update
sudo apt-get install -y libhwloc-dev libudev-dev
- name: setup toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
components: rustfmt, clippy
- name: Build project
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all --tests -- -D warnings