Skip to content

Bump github.com/go-playground/validator/v10 from 10.27.0 to 10.28.0 in the go-dependencies group across 1 directory #68

Bump github.com/go-playground/validator/v10 from 10.27.0 to 10.28.0 in the go-dependencies group across 1 directory

Bump github.com/go-playground/validator/v10 from 10.27.0 to 10.28.0 in the go-dependencies group across 1 directory #68

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "go.mod"
- name: Display Go version
run: go version
- name: Test
run: make test
golangci-lint:
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v2.4.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: "go.mod"
- name: Lint
uses: golangci/golangci-lint-action@v7
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}