Skip to content

Commit

Permalink
Add github workflow to run unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vibridi committed Sep 20, 2024
1 parent 0ab857a commit 0f5dc24
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run Unit Tests

on:
pull_request:
types: [opened, synchronize]

jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false
- name: Run Tests
run: make test

0 comments on commit 0f5dc24

Please sign in to comment.