Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
Add GitHub action for testing
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Heid <sebastian.heid45@gmail.com>
  • Loading branch information
dpb587-pivotal and s4heid committed Mar 18, 2020
1 parent b005bd7 commit c8edee1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test
on:
push:
jobs:
release:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.14.x
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: go mod download
- name: Execute Tests
run: go test ./...

0 comments on commit c8edee1

Please # to comment.