Skip to content

Commit

Permalink
Add unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kayrus committed Dec 12, 2024
1 parent 686a73c commit 36b4851
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Go Unit Tests

on:
push:
branches:
- master
pull_request:

jobs:
golang-test:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Checkout
uses: actions/checkout@v4

- name: Run tests
run: go test ./... -v

0 comments on commit 36b4851

Please sign in to comment.