Skip to content

Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 #18473

Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0

Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 #18473

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
validator:
name: Run Linters and Checkers
runs-on: ubuntu-22.04
steps:
- name: Check-out code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.24"
- uses: actions/setup-node@v4
with:
node-version: "18.17.0"
cache: "npm"
cache-dependency-path: webui/package-lock.json
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
version: 1.54.0
- name: Generate code
env:
NODE_OPTIONS: "--max-old-space-size=4096"
run: |
make gen
make validate-clients-untracked-files
# - name: Ensure Go workspace is synced
# run: |
# go work sync
# echo "Git status after go work sync:"
# git status
# [ ! -n "$(git status --porcelain)" ]
- name: Checks validator
run: make checks-validator
test-go:
name: Run Go tests
runs-on: ubuntu-22.04
steps:
- name: Check-out code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.24"
- name: Run Go tests
run: |
mkdir ./webui/dist
touch ./webui/dist/index.html
make test-go