Skip to content

Commit

Permalink
Merge pull request #1 from SalesLoft/github-actions
Browse files Browse the repository at this point in the history
Create go.yml
  • Loading branch information
cmoad authored Sep 29, 2020
2 parents ba3b803 + a984b8b commit 6a67ebd
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Go

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

jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
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: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic

- name: CodeCov
run: bash <(curl -s https://codecov.io/bash)

0 comments on commit 6a67ebd

Please sign in to comment.