Skip to content

chore(deps): bump github.com/google/uuid from 1.3.1 to 1.5.0 #181

chore(deps): bump github.com/google/uuid from 1.3.1 to 1.5.0

chore(deps): bump github.com/google/uuid from 1.3.1 to 1.5.0 #181

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
if: github.event.pull_request.draft == false
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: '1.18'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: recursive
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./...