Skip to content

feat: "Implement and utilize VdErr() for error handling" #74

feat: "Implement and utilize VdErr() for error handling"

feat: "Implement and utilize VdErr() for error handling" #74

Workflow file for this run

name: Test
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21.x','1.22.x']
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go mod download
- name: vet
run: go vet ./...
- name: test
run: go test -race -v ./...