Skip to content

More complete validation of endpoint for gobgp grpc #49

More complete validation of endpoint for gobgp grpc

More complete validation of endpoint for gobgp grpc #49

Workflow file for this run

---
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
core:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
platform: [ubuntu-latest]
name: Build
runs-on: ${{ matrix.platform }}
env:
GOBIN: /home/runner/.local/bin
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Amend Environment Path
run: |
mkdir -p /home/runner/.local/bin
echo "/home/runner/.local/bin" >> $GITHUB_PATH
- name: Install prerequisites
run: |
sudo apt-get --assume-yes update
sudo apt-get --assume-yes install make
sudo apt-get --assume-yes install libnss3-tools
- name: Install Go modules
run: |
mkdir -p .coverage
make dep
go mod tidy
go mod verify
go mod download
- name: Run tests
run: |
make
- name: Run tests
run: |
make test
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: Test Coverage Report
path: .coverage/coverage.html