diff --git a/.github/workflows/test-unit-golang.yml b/.github/workflows/test-unit-golang.yml new file mode 100644 index 0000000..05a59e1 --- /dev/null +++ b/.github/workflows/test-unit-golang.yml @@ -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 ./..."