Skip to content

add CONTRIBUTING.md file with some instructions on how to run some ma… #2

add CONTRIBUTING.md file with some instructions on how to run some ma…

add CONTRIBUTING.md file with some instructions on how to run some ma… #2

name: ZDM Util Unit Tests
on: push
jobs:
unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
container: golang:1.26.5-bookworm
defaults:
run:
working-directory: ./zdm-util
steps:
- uses: actions/checkout@v3
- name: Set workspace as safe (to fix go vcs issue)
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Run unit tests
run: go test ./...