Skip to content

vickylib: two read locks don't conflict #80

vickylib: two read locks don't conflict

vickylib: two read locks don't conflict #80

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
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