v1.7.0 - Upgrade Cosmos SDK to v0.47.5, CometBFT to v0.37.3, IBC to v7.3.1 #540
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
cleanup-runs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: rokroskar/workflow-run-cleanup-action@master | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'" | |
build: | |
runs-on: ubuntu-cpu16-ram64 | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- uses: technote-space/get-diff-action@v5 | |
id: git_diff | |
with: | |
SUFFIX_FILTER: | | |
.go | |
.mod | |
.sum | |
- name: Pull LFS files | |
run: git lfs pull | |
- run: | | |
make build | |
if: "env.GIT_DIFF != ''" |