Update go-ethereum's version to v1.13.14 (#118) #402
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
go_version: 1.21 | |
GO111MODULE: on | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} | |
jobs: | |
Rosetta-Validation: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start a private ethereum network | |
uses: ./.github/actions/geth | |
id: geth | |
- name: Sleep for 20 seconds | |
run: sleep 20s | |
shell: bash | |
- name: Get latest block from geth node | |
run: | | |
curl -X POST "http://127.0.0.1:8546" --header 'Content-Type: application/json' --data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["latest", true],"id":1}' | |
shell: bash | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install web3 | |
- name: deploy erc20 USDC | |
run: .github/scripts/init_erc20.sh | |
shell: bash | |
- name: Get erc20 infos | |
run: python .github/scripts/contract_infos.py | |
shell: bash | |
- name: Populate transactions | |
run: python .github/scripts/populate_txns.py | |
shell: bash | |
- name: Start Rosetta Server | |
run: .github/scripts/setup.sh | |
shell: bash | |
- name: Run Check:construction test | |
run: .github/scripts/construction.sh | |
shell: bash | |
- name: Run Check:data test | |
run: .github/scripts/cli.sh | |
shell: bash | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go_version }} | |
- run: make test | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go_version }} | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --timeout 3m | |
Check-License: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
version: latest | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go_version }} | |
- run: make check-license | |
Check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
version: latest | |
- run: make check-format | |
Salus: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
version: latest | |
- run: make salus |