Merge pull request #75 from datachainlab/bump_1_16 #456
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| jobs: | |
| unit-test: | |
| name: unit-test | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.22' | |
| - name: lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.58 | |
| # still using the deprecated types in ibc-go v8 | |
| args: --timeout=5m0s --disable staticcheck | |
| - name: test | |
| run: go test -v ./module | |
| e2e: | |
| name: e2e | |
| timeout-minutes: 45 | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.22' | |
| - name: test | |
| working-directory: e2e | |
| run: | | |
| make chain | |
| make contracts | |
| # Wait for Maxwell HF to be enabled (0.75sec * 2000) | |
| sleep 1500 | |
| make relayer | |
| make test | |
| - name: integration-test | |
| run: go test -v ./tests |