Skip to content

Commit

Permalink
Merge pull request #72 from hashicorp/basic-ci
Browse files Browse the repository at this point in the history
github action to run tests
  • Loading branch information
evanphx authored Sep 24, 2020
2 parents 0bf8986 + 2671f93 commit 0722fda
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: go-hclog

on: [push]

jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: go test -v ./...

0 comments on commit 0722fda

Please sign in to comment.