ip-link: Adds support for veth, bond and bridge interface types #31
Workflow file for this run
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 | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| name: CI (stable) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install necessary dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install "linux-modules-extra-$(uname -r)" | |
| sudo modprobe vrf | |
| - name: Install Rust Stable | |
| run: | | |
| rustup override set stable | |
| rustup update stable | |
| - name: Integration Tests | |
| run: make check |