Skip to content

Merge pull request #7 from cilium/client-support-sharing #37

Merge pull request #7 from cilium/client-support-sharing

Merge pull request #7 from cilium/client-support-sharing #37

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 1.17.x, 1.18.x ]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...