Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.

build(deps): bump github.com/go-playground/validator/v10 from 10.22.1 to 10.24.0 #500

build(deps): bump github.com/go-playground/validator/v10 from 10.22.1 to 10.24.0

build(deps): bump github.com/go-playground/validator/v10 from 10.22.1 to 10.24.0 #500

Workflow file for this run

name: Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
validation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: lint
run: make lint
- name: test
run: make test
- name: generate coverage report
run: make cover
- name: Codecov
uses: codecov/codecov-action@v5.3.1
- name: Build
run: make build