mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-15 04:25:27 +00:00
2d07988994
* generate erc20 golang interface * write interchain test that deploys ERC20 * enable deployed erc20 as a conversion pair * convert erc20 to sdk coin! * refactor: move RandomMnemonic() to util * erc20 -> cosmos coin -> ibc e2e test * add NewEvmSignerFromMnemonic to util * ci: update ibc-test cache dependency list * fix ci dependencies
103 lines
3.0 KiB
YAML
103 lines
3.0 KiB
YAML
name: Continuous Integration (Default Checks)
|
|
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo from current commit
|
|
uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: go.mod
|
|
cache-dependency-path: |
|
|
go.sum
|
|
tests/e2e/kvtool/go.sum
|
|
- name: build application
|
|
run: make build
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo from current commit
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: go.mod
|
|
cache-dependency-path: |
|
|
go.sum
|
|
tests/e2e/kvtool/go.sum
|
|
- name: run unit tests
|
|
run: make test
|
|
- name: run e2e tests
|
|
run: make docker-build test-e2e
|
|
fuzz:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo from current commit
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: go.mod
|
|
cache-dependency-path: |
|
|
go.sum
|
|
- name: run fuzz tests
|
|
run: make test-fuzz
|
|
ibc-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo from current commit
|
|
uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: tests/e2e-ibc/go.mod
|
|
cache-dependency-path: |
|
|
tests/e2e-ibc/go.sum
|
|
go.sum
|
|
- name: run ibc e2e tests
|
|
run: make test-ibc
|
|
validate-internal-testnet-genesis:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo from current commit
|
|
uses: actions/checkout@v4
|
|
- name: save version of kava that will be deployed if this pr is merged
|
|
id: kava-version
|
|
run: |
|
|
echo "KAVA_VERSION=$(cat ./ci/env/kava-internal-testnet/KAVA.VERSION)" >> $GITHUB_OUTPUT
|
|
- name: checkout version of kava that will be deployed if this pr is merged
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ steps.kava-version.outputs.KAVA_VERSION }}
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: go.mod
|
|
- name: build kava cli
|
|
run: make install
|
|
- name: checkout repo from current commit to validate current branch's genesis
|
|
uses: actions/checkout@v4
|
|
- name: validate testnet genesis
|
|
run: kava validate-genesis ci/env/kava-internal-testnet/genesis.json
|
|
validate-protonet-genesis:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo from current commit
|
|
uses: actions/checkout@v4
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: go.mod
|
|
- name: build kava cli
|
|
run: make install
|
|
- name: validate protonet genesis
|
|
run: kava validate-genesis ci/env/kava-protonet/genesis.json
|