Skip to content

Main Deployment

Main Deployment #12

Workflow file for this run

name: Main Deployment
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v2
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build golang binary
run: make build
- name: Running code tests
run: make test