Skip to content

feat: add logger in server and client #10

feat: add logger in server and client

feat: add logger in server and client #10

Workflow file for this run

name: go unit test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
go_unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run coverage
run: go test ./... -coverpkg=./opcua/... -race -coverprofile=coverage.out -covermode=atomic