Skip to content

Merge pull request #352 from SakulFlee:renovate/pollster-0.x #356

Merge pull request #352 from SakulFlee:renovate/pollster-0.x

Merge pull request #352 from SakulFlee:renovate/pollster-0.x #356

Workflow file for this run

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
- name: Cache
uses: actions/[email protected]
with:
path: target/
key: target
- run: sudo apt-get install -y libudev-dev
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features -- -W clippy::all
continue-on-error: true
- name: Tests
run: cargo test --workspace
continue-on-error: true