fix(blend): ensure all nodes are connected and have the same peering degree #253
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
name: CI | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: [master] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
simlib: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build | |
working-directory: simlib | |
run: cargo build -v | |
# TODO: uncomment this after fixing tests | |
# - name: Unit tests | |
# working-directory: simlib | |
# run: cargo test -v |