Bumps go version to 1.21 (latest stable) #1595
Workflow file for this run
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
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright 2022-present Open Networking Foundation | |
name: E2E integration tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test-integration-up4-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.16' | |
- name: Run integration tests for PFCP Agent & UP4 | |
run: | | |
make test-up4-integration-docker || (docker logs pfcpiface; exit 1) | |
test-integration-bess-native: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.16' | |
- name: Run integration tests for PFCP Agent & UP4 | |
run: | | |
make test-bess-integration-native |