Skip to content

Update go.yml

Update go.yml #34

Workflow file for this run

name: Go
on:
push:
branches: [ master, develop ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ master, develop]
paths-ignore:
- 'README.md'
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: Download Packages
run: go mod download
- name: Build
run: go build -v ./...