Skip to content

build(deps): bump log from 0.4.21 to 0.4.22 #295

build(deps): bump log from 0.4.21 to 0.4.22

build(deps): bump log from 0.4.21 to 0.4.22 #295

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
- 'release-**'
pull_request:
jobs:
ci:
name: Lint and unit test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/[email protected]
with:
components: clippy, rustfmt
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
version: "26.1"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test --workspace -- --test-threads=2