Skip to content

security (dialFunc): adding a dialFunc to estabilishing network conne… #35

security (dialFunc): adding a dialFunc to estabilishing network conne…

security (dialFunc): adding a dialFunc to estabilishing network conne… #35

Workflow file for this run

name: Go Testing
on:
push:
branches: ["third_version", "*"]
pull_request:
branches: ["third_version", "*"]
jobs:
build:
name: Test Code
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.22.3
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -v ./...
- name: Test (coverage)
run: go test -cover ./...