Add a github workflow to build the tool

pull/35/head
Elis Popescu 3 years ago
parent 102b58f597
commit de15db1ca0

@ -0,0 +1,22 @@
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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 -mod=vendor -ldflags "-X main.version=0.0.1" && test $(./tty-share --version) = 0.0.1
Loading…
Cancel
Save