Skip to content

net: let VMs talk to each other, but not to the host #86

net: let VMs talk to each other, but not to the host

net: let VMs talk to each other, but not to the host #86

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Build, Lint & Unit Tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: make build
run: make build
- name: make clippy
run: make clippy
- name: cargo test
run: cargo test
- name: cargo fmt -- --check
run: cargo fmt -- --check
- name: Check for unused dependencies
run: |
cargo install cargo-machete --locked
make udeps