Skip to content

build(deps): bump github.com/google/uuid from 1.3.0 to 1.6.0 #145

build(deps): bump github.com/google/uuid from 1.3.0 to 1.6.0

build(deps): bump github.com/google/uuid from 1.3.0 to 1.6.0 #145

Workflow file for this run

name: Build and Test
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.17
- name: Build
run: go build -v ./...
- name: Test & Coverage
run: |
go install github.com/ory/[email protected]
go-acc -o coverage.txt ./... -- -v --race
- uses: codecov/codecov-action@v3
with:
file: ./coverage.txt