Update chain33 #972
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: ci_cross2eth | |
on: [push,pull_request] | |
jobs: | |
ci_cross2eth: | |
name: ci_cross2eth | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up Golang | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
id: go | |
- name: deploy | |
run: | | |
export GOPATH=$HOME/go | |
export PATH=${PATH}:`go env GOPATH`/bin | |
echo $GOPATH | |
make | |
make docker-compose dapp=cross2eth | |
make docker-compose-down dapp=cross2eth |