Skip to content

Make merge gatekeeper more resilient #119

Make merge gatekeeper more resilient

Make merge gatekeeper more resilient #119

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
- release/v*
paths:
- cmd/**
- internal/**
- go.mod
- go.sum
env:
GO_VERSION: 1.16.7
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Go Build
run: go build ./...
- name: Run Go Test
run: go test ./...