Skip to content

vickyctl: handle poisoned locks #63

vickyctl: handle poisoned locks

vickyctl: handle poisoned locks #63

Workflow file for this run

name: Cargo Build & Test
on:
pull_request:
push:
branches:
- master
- main
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
steps:
- uses: actions/checkout@v3
- run: sudo apt install -y protobuf-compiler
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup component add clippy
- run: cargo check --verbose
- run: cargo clippy -- -D warnings
- run: cargo build --verbose
- run: cargo test --verbose