Skip to content

Internal refactoring to avoid unneeded netlink parsing #36

Internal refactoring to avoid unneeded netlink parsing

Internal refactoring to avoid unneeded netlink parsing #36

Workflow file for this run

name: govdpa-ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build & Unit Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Run Golint
run: make lint
- name: Run Unit Test
run: make test
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.50.0
skip-go-installation: true
skip-pkg-cache: true
skip-build-cache: true