Skip to content

Commit

Permalink
ci: unit-test golang
Browse files Browse the repository at this point in the history
  • Loading branch information
dmipeck committed Aug 24, 2024
1 parent d6a1725 commit 39fac3b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-unit-golang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Unit Test Go"

on:
push:
branches:
- "main"
pull_request:
branches:
- "main"

jobs:
test_unit_golang:
runs-on: "ubuntu-latest"
steps:

- name: "Checkout"
uses: "actions/checkout@v4"

- name: "Setup Go"
uses: "actions/setup-go@v5"
with:
go-version: "1.23"

- name: "Run Unit Tests"
run: "go test ./..."

0 comments on commit 39fac3b

Please sign in to comment.