Skip to content

Commit

Permalink
fix: updating workflow to build test code
Browse files Browse the repository at this point in the history
  • Loading branch information
chatton committed Nov 2, 2022
1 parent a0e59b8 commit 579efe1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,14 @@ jobs:
- name: Build ibc-go
run: GOARCH=${{ matrix.go-arch }} LEDGER_ENABLED=false make build
- name: Build e2e
run: (cd e2e; GOARCH=${{ matrix.go-arch }} go build ./...)
run: |
cd e2e
test_dirs="$(ls -A tests)"
for td in $test_dirs
do
GOARCH=${{ matrix.go-arch }} go test -c "./tests/${td}"
done
split-test-files:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 579efe1

Please sign in to comment.