add CONTRIBUTING.md file with some instructions on how to run some ma… #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ./... |