Skip to content

chore(deps): bump github.com/quic-go/quic-go from 0.48.1 to 0.48.2 in the go_modules group across 1 directory #1131

chore(deps): bump github.com/quic-go/quic-go from 0.48.1 to 0.48.2 in the go_modules group across 1 directory

chore(deps): bump github.com/quic-go/quic-go from 0.48.1 to 0.48.2 in the go_modules group across 1 directory #1131

Workflow file for this run

on:
push:
branches: main
pull_request:
branches: main
name: Build and validate genesis
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.23
- uses: actions/checkout@v4
- name: install
run: make install
- name: validate genesis
run: |
for dir in networks/*/; do
if [ -f "$dir/genesis.json" ]; then
mantrachaind genesis validate-genesis "$dir/genesis.json"
fi
done