Skip to content

Feature: Regular updates #14

Feature: Regular updates

Feature: Regular updates #14

Workflow file for this run

---
name: Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.16'
- run: go version
- name: Build
run: make build
- name: Test
run: make test