Skip to content

Stuff Messages to increase throughput #260

Stuff Messages to increase throughput

Stuff Messages to increase throughput #260

Workflow file for this run

on: pull_request
name: Linter
jobs:
clippy_check:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install packages
run: sudo apt update && sudo apt install -y cmake
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '12.2.Rel1'
- uses: actions-rs/toolchain@v1
with:
components: clippy
toolchain: stable
target: thumbv7em-none-eabihf
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}