Skip to content

Commit

Permalink
Create go.yml (#15)
Browse files Browse the repository at this point in the history
* Create go.yml

add github action

* Update go.yml

add go get

* Update go.yml

* Update go.yml

* Update go.yml

fix typo

* Update go.yml

just do build for now
  • Loading branch information
rakelkar authored Feb 4, 2021
1 parent e5c5ffe commit 39cfb50
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Go

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:

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

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

- name: Get
run: go get ./...

- name: Build
run: go build -v ./...

0 comments on commit 39cfb50

Please sign in to comment.