Skip to content

Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#101) #97

Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#101)

Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#101) #97

Workflow file for this run

name: build and test
on:
workflow_dispatch: null
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "stable"
- run: go version
- name: Build binary
run: make
- name: Test
run: make test
old-go-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.18"
- run: go version
- name: Build binary
run: make
- name: Test
run: make test