-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (44 loc) · 1.06 KB
/
code-verify.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Flame CI
on: [push, pull_request]
env:
CLICOLOR_FORCE: 1
jobs:
ci:
name: Code Verify
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust: [stable]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Install cargo-make
uses: actions-rs/cargo@v1
with:
command: install
args: --debug cargo-make
- name: Install gRPC
run: |
sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Cargo make
uses: actions-rs/cargo@v1
with:
command: make
- name: Cargo fmt
uses: actions-rs/cargo@v1
with:
command: make
args: check-format-ci-flow
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
command: make
args: clippy-ci-flow