Send vl_api_sockclnt_delete_t message on disconnect (#248) #1048
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: Test | |
on: | |
# Runs on branch push to master & PRs | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
# Runs daily at 05:05 | |
schedule: | |
- cron: '5 5 * * *' | |
# Allows running manually | |
workflow_dispatch: | |
jobs: | |
integration: | |
name: "VPP Integration ${{ matrix.version }}" | |
runs-on: ubuntu-latest | |
env: | |
VPP_REPO: ${{ matrix.version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 'master' | |
- '2406' | |
- '2402' | |
- '2310' | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Setup Go" | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: "Run Tests" | |
run: | | |
make test-integration |