Skip to content

build(deps): bump github.com/containernetworking/plugins from 1.3.0 to 1.4.0 #303

build(deps): bump github.com/containernetworking/plugins from 1.3.0 to 1.4.0

build(deps): bump github.com/containernetworking/plugins from 1.3.0 to 1.4.0 #303

Workflow file for this run

---
name: test
on: ["push", "pull_request"]
env:
GO_VERSION: "1.18"
LINUX_ARCHES: "amd64 386 arm arm64 s390x mips64le ppc64le"
jobs:
build:
name: Build all linux architectures
runs-on: ubuntu-latest
steps:
- name: setup go
uses: actions/setup-go@v1
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v2
- name: Build on all supported architectures
run: |
set -e
for arch in ${LINUX_ARCHES}; do
echo "Building for arch $arch"
GOARCH=$arch make
done
test-linux:
name: Run tests on Linux amd64
runs-on: ubuntu-latest
steps:
- name: setup go
uses: actions/setup-go@v1
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v2
- name: Install test binaries
env:
GO111MODULE: off
run: |
go get github.com/modocache/gover
go get github.com/mattn/goveralls
- name: test
run: PATH=$PATH:$(go env GOPATH)/bin COVERALLS=1 make check
- name: Send coverage to coveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PATH=$PATH:$(go env GOPATH)/bin
gover
goveralls -coverprofile=gover.coverprofile -service=github