fix(rgbx): CI waits relied on chain33-cli exit codes which are always 0 #231
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_paracross | |
| on: [push,pull_request] | |
| jobs: | |
| paracross: | |
| name: ci_paracross | |
| runs-on: ubuntu-22.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: set go env | |
| run: export PATH=${PATH}:`go env GOPATH`/bin | |
| - name: deploy | |
| run: | | |
| make docker-compose dapp=paracross | |
| make docker-compose-down dapp=paracross |