Skip to content

Bump github.com/go-playground/validator/v10 from 10.15.0 to 10.15.1 #3

Bump github.com/go-playground/validator/v10 from 10.15.0 to 10.15.1

Bump github.com/go-playground/validator/v10 from 10.15.0 to 10.15.1 #3

Workflow file for this run

name: CI
on: [ push, pull_request, workflow_dispatch ]
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: stable
- name: Build
run: make build
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Test
run: make test
- name: Update test coverage
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: ncruces/go-coverage-report@main