Skip to content

Leasing implementation & source code refactorizations (#23) #62

Leasing implementation & source code refactorizations (#23)

Leasing implementation & source code refactorizations (#23) #62

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get apt dependencies
run: sudo apt-get install -y protobuf-compiler
- name: Build
run: cargo build --workspace --verbose
- name: Add clippy component
run: rustup component add clippy
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --workspace