Skip to content

Commit

Permalink
Add GitHub Actions workflow to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMaude committed Jul 1, 2020
1 parent 5e82561 commit 9ab963f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches:
- master
pull_request:

jobs:
build:
name: Build and Test
runs-on: ubuntu-latest

steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '~1.14.4'

- name: Checkout code
uses: actions/checkout@v2

- name: Run tests
run: |
go test -v ./...

0 comments on commit 9ab963f

Please sign in to comment.