Skip to content

Commit

Permalink
Merge pull request #5 from JackalLabs/adding-workflows
Browse files Browse the repository at this point in the history
Add test workflow
  • Loading branch information
TheMarstonConnell authored Sep 21, 2023
2 parents 002a7de + 24e91dd commit 87e89fd
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

0 comments on commit 87e89fd

Please sign in to comment.