Skip to content

Commit

Permalink
Adding test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Nov 9, 2023
1 parent bda6a57 commit 86b7248
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push, pull_request]
name: Test
jobs:
test:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Checkout code
uses: actions/checkout@v3
- name: Unit Tests
run: go build ./...

0 comments on commit 86b7248

Please sign in to comment.