Skip to content

Update Docker release workflow and image tagging (#106) #35

Update Docker release workflow and image tagging (#106)

Update Docker release workflow and image tagging (#106) #35

Workflow file for this run

name: Go Unit Tests
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
workflow_dispatch:
jobs:
test:
name: Test
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Install dependencies
run: go mod download
- name: Run Unit Tests
run: go test ./... -v
env:
GO_ENV: "test"