Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
Create go.yml
Browse files Browse the repository at this point in the history
creating automated workflow for building binary
  • Loading branch information
itzmeanjan authored Jan 27, 2021
1 parent 5fe5c25 commit f06e0fc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go

on:
push:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15

- name: Build
run: go build -v -o ette

0 comments on commit f06e0fc

Please sign in to comment.