* Introduce RPC and new protocol crate #3590
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: cargo-checkmate Continuous Integration | |
jobs: | |
cargo-checkmate: | |
name: cargo-checkmate | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Install protoc" | |
run: | | |
sudo apt-get install -y protobuf-compiler | |
- name: "Setup OPA" | |
uses: open-policy-agent/setup-opa@v2 | |
with: | |
version: 0.49.0 | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- run: cargo install cargo-checkmate | |
- run: cargo-checkmate run check | |
- run: cargo-checkmate run format | |
- run: cargo-checkmate run clippy | |
- run: cargo clippy --features inmem | |
- run: cargo-checkmate run build | |
- run: cargo-checkmate run doc | |
- run: cargo-checkmate run audit |