use kernstor-wire in node, remove protocol duplication #46
This file contains hidden or 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
| 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 |