chore: remove unused struct (#99) #47
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: docker_publish | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'base/consumer-chain-support' | |
tags: | |
- '*' | |
jobs: | |
lint_test: | |
uses: babylonlabs-io/.github/.github/workflows/[email protected] | |
with: | |
run-unit-tests: true | |
run-lint: true | |
e2e_babylon: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Run e2e Babylon tests | |
run: make test-e2e-babylon | |
e2e_wasmd: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Run e2e Wasmd tests | |
run: make test-e2e-wasmd | |
e2e_bcd: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Run e2e BCD tests | |
run: make test-e2e-bcd | |
e2e_op: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Set up the devnet data | |
run: make op-e2e-devnet | |
- name: Run e2e OP tests | |
run: make test-e2e-op | |
docker_pipeline: | |
needs: ["lint_test"] | |
uses: babylonlabs-io/.github/.github/workflows/[email protected] | |
secrets: inherit | |
with: | |
publish: true |