Skip to content

Configure CD

Configure CD #14

Workflow file for this run

name: Check
on:
push:
branches: [ "devnet" ]
pull_request:
branches: [ "devnet" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install system deps
run: sudo apt-get install protobuf-compiler
- name: Build
run: cargo build --verbose --locked
- name: Run tests
run: cargo test --verbose --locked
- name: Check format
run: cargo fmt -- --check
- name: Clippy checks
run: cargo clippy -- -D warnings