Skip to content

feat: add basic common code used in sdk and cometbft repos #2

feat: add basic common code used in sdk and cometbft repos

feat: add basic common code used in sdk and cometbft repos #2

Workflow file for this run

name: Build
on:
pull_request:
merge_group:
push:
branches:
- main
- release/**
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}-build
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-arch: ["amd64", "arm", "arm64"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
check-latest: true
- name: Build
run: GOARCH=${{ matrix.go-arch }} make build
- name: Test
run: GOARCH=${{ matrix.go-arch }} make test