Skip to content

Bump github.com/go-playground/validator/v10 from 10.27.0 to 10.28.0 #163

Bump github.com/go-playground/validator/v10 from 10.27.0 to 10.28.0

Bump github.com/go-playground/validator/v10 from 10.27.0 to 10.28.0 #163

Workflow file for this run

name: Run tests
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
types: [opened, reopened]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.22.0'
- name: Install dependencies
run: go mod download
- name: Build
run: make build
- name: Run tests
run: make test