Skip to content

Commit

Permalink
Setup GitHub Actions (#2)
Browse files Browse the repository at this point in the history
* Setup GHA

* Delete .travis.yml
  • Loading branch information
Chris Roche committed Sep 15, 2020
1 parent 1c4ed59 commit 919346e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 10 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: Build
run: go build -v .

- name: Test
run: go test -v .
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 919346e

Please sign in to comment.