Skip to content

Commit

Permalink
diff lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Feb 19, 2024
1 parent ac0ff22 commit 6ec501a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,24 +74,30 @@ jobs:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: Mod Tidy
run: cd chain1 && go mod tidy

# Cache go mod cache, used to speedup builds
- name: Go Mod Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

- name: Mod Tidy
run: cd chain1 && go mod tidy

- name: Unit Test Chain
run: cd chain1 && go test ./...
run: |
cd chain1
go test ./...
- name: Install Chain
run: cd chain1 && make install && echo "Installed ${{env.BIN_NAME}}"
run: |
cd chain1
make install && echo "Installed ${{env.BIN_NAME}}"
- name: Run Chain
run: cd chain1 && HOME_DIR="~/.simapp" CHAIN_ID="local-1" BLOCK_TIME="2000ms" CLEAN=true sh scripts/test_node.sh &
run: |
cd chain1
HOME_DIR="~/.simapp" CHAIN_ID="local-1" BLOCK_TIME="2000ms" CLEAN=true sh scripts/test_node.sh &
- name: Validate Running
run: |
Expand Down

0 comments on commit 6ec501a

Please sign in to comment.