Skip to content

add validate for config #1

add validate for config

add validate for config #1

Workflow file for this run

name: Go test
on:
pull_request:
branches:
- main
workflow_dispatch:
push:
branches:
- main
tags:
- 'v*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Setup GO env
run: go env -w CGO_ENABLED=0
- name: Run Tests
run: go test -tags ci ./...