Skip to content

Add image-build action [WIP] #6

Add image-build action [WIP]

Add image-build action [WIP] #6

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
environment: PR Unit Tests
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Check style
run: make check_style
- name: Build
run: make bin
- name: Test
run: go test -v -race ./pkg/...