Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

build: update cometbft v0.34.28 #2

build: update cometbft v0.34.28

build: update cometbft v0.34.28 #2

Workflow file for this run

name: Tests
on:
push:
tags:
- v*
branches:
- main
paths:
- '**.go'
pull_request:
paths:
- '**.go'
permissions:
contents: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.19"
- name: Run go mod
run: make go.sum
- name: Run make build
run: make build
- name: Run make test
run: make test