Skip to content

add env helper

add env helper #41

Workflow file for this run

name: Build and Test Common Data Layer
on:
push:
branches:
- '*'
pull_request:
branches:
- 'master'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Check out code
uses: actions/checkout@v4
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...