Add support for large packet in the packetIn2 message #271
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: Go | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| jobs: | |
| test: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v5 | |
| - name: Set up Go using version from go.mod | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Run unit tests | |
| run: | | |
| make test | |
| tidy: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v5 | |
| - name: Set up Go using version from go.mod | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Check tidiness | |
| run: | | |
| ./ci/check-tidy.sh | |
| golangci: | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - name: Check-out code | |
| uses: actions/checkout@v5 | |
| - name: Set up Go using version from go.mod | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Run code linters | |
| run: | | |
| make golangci |