Add PDU session setup test #13
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
name: PacketRusher Workflow | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: build and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.0 | |
- name: Check Versions | |
run: | | |
lsb_release -a | |
uname -a | |
go version | |
git --version | |
docker --version | |
echo "pwd: $(pwd)" | |
echo "GOROOT: $GOROOT" | |
echo "GOPATH: $GOPATH" | |
echo "Listing dirs" | |
ls -la | |
sudo ln -s $GOROOT /usr/local/go | |
- name: Install Go Deps | |
run: go mod download | |
- name: Launch tests | |
run: go test -v ./test/aio5gc |