Skip to content

build: update golang #14

build: update golang

build: update golang #14

Workflow file for this run

name: Run CI Tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: hashicorp/setup-golang@v2
with:
version-file: go.mod
- name: Run Go Vet
run: |
go vet ./...
- name: Run Go Test
run: |
go test -race -v ./...