Skip to content

Add release process for container images #3

Add release process for container images

Add release process for container images #3

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Build
run: make build
- name: Test
run: make test