Skip to content

[WIP] Support Managed Load Balancer Day 4 #111

[WIP] Support Managed Load Balancer Day 4

[WIP] Support Managed Load Balancer Day 4 #111

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.17.x, 1.18.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Format
if: matrix.platform == 'ubuntu-latest'
run: make fmtcheck
- name: Vet
if: matrix.platform == 'ubuntu-latest'
run: make vet
- name: Test
run: make test