Skip to content

Bump github.com/google/uuid from 1.3.0 to 1.6.0 in /examples #349

Bump github.com/google/uuid from 1.3.0 to 1.6.0 in /examples

Bump github.com/google/uuid from 1.3.0 to 1.6.0 in /examples #349

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14', '1.13' ]
name: Go ${{ matrix.go }} sample
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3