Skip to content

ci: fix linting and ci workflow #2

ci: fix linting and ci workflow

ci: fix linting and ci workflow #2

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install protobuf-compiler libprotobuf-dev
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: Run lint
run: make lint