8000 nm vlan: Support nm connection with empty `connection.interface-name` · nmstate/nmstate@7eaa425 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

nm vlan: Support nm connection with empty connection.interface-name #56

nm vlan: Support nm connection with empty connection.interface-name

nm vlan: Support nm connection with empty connection.interface-name #56

Workflow file for this run

name: Minium Support Rust Version Test
concurrency:
group: msrv-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types: [opened, synchronize, reopened]
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
jobs:
build_on_msrv:
strategy:
fail-fast: true
matrix:
include:
- msrv: "1.77"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.msrv }}
run: rustup install ${{ matrix.msrv }}
- name: Build test
run: cd rust && cargo +${{ matrix.msrv }} build --ignore-rust-version
- name: Unit tests
run: cd rust && cargo +${{ matrix.msrv }} test
0