Skip to content

use kernstor-wire in node, remove protocol duplication #46

use kernstor-wire in node, remove protocol duplication

use kernstor-wire in node, remove protocol duplication #46

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
check:
name: Check & Test
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Check Rust version
run: |
rustc --version
cargo --version
- name: Lint
run: make lint
- name: Build
run: make build
- name: Unit tests
run: make test-unit
- name: Integration tests
run: make ci-integration