feat(x/crosschain): unified external claim msg #635
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: Golang | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
- '.golangci.yml' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
- '.golangci.yml' | |
- '.github/workflows/golang.yml' | |
permissions: | |
contents: read | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- run: | | |
make check-no-lint | |
version=$(grep golangci_version= ./Makefile | awk -F '=' '{print $2}') | |
echo "GOLANGCI_VERSION=$version" >> $GITHUB_ENV | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
version: ${{ env.GOLANGCI_VERSION }} | |
args: --timeout 10m | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- run: make test | |
mock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- run: | | |
make mocks | |
git diff --exit-code |