8000 ADD install protobuf compiler to release actions · airalab/robonomics@bd71a23 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ADD install protobuf compiler to release actions #69

ADD install protobuf compiler to release actions

ADD install protobuf compiler to release actions #69

Workflow file for this run

name: Static Analysis
on: [push]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt
default: true
- name: Check format
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: clippy
default: true
- name: Check lint suggestions
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warning
0