Skip to content

Merge pull request #21 from pollen-robotics/offset-reduction #44

Merge pull request #21 from pollen-robotics/offset-reduction

Merge pull request #21 from pollen-robotics/offset-reduction #44

Workflow file for this run

name: Rust Lint and Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check
run: |
cargo check --all --tests
- name: Build
run: |
cargo build
- name: Test
run: |
cargo test
- name: Format
run: |
cargo fmt --all -- --check
- name: Lint
run: |
cargo clippy --all-targets --all-features -- -D warnings