Skip to content

Commit

Permalink
add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarstonConnell committed Sep 21, 2023
1 parent 3b7a484 commit 24f8e57
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Unit Test

on:
pull_request:
push:
branches: ["main"]

jobs:
test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v4
with:
go-version: 1.21.0 # The Go version to download (if necessary) and use.
- name: Test
shell: bash
run: make test-unit

0 comments on commit 24f8e57

Please sign in to comment.