build(deps): bump github.com/cometbft/cometbft from 0.38.8 to 0.38.15 #3311
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 - build and binary upload | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
# Install and setup go | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
# setup gopath | |
- name: Set PATH | |
run: | | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
shell: bash | |
# checkout relayer | |
- name: checkout relayer | |
uses: actions/checkout@v3 | |
# unit tests | |
- name: run unit tests | |
run: make test | |
# build binary | |
- name: build binary and move to upload location | |
run: make build | |
# upload resulting binaries | |
- name: upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rly | |
path: ./build/rly |