Skip to content

Commit

Permalink
Change into relayer directory before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kylesmartin committed Jul 25, 2022
1 parent 631dcc6 commit 41a8a50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/relay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Install Solana CLI
run: ./scripts/install-solana-ci.sh
- name: Build
run: go build -v ./relayer/...
run: cd ./relayer && go build -v ./pkg/...
- name: Test
run: go test ./relayer/... -v
run: cd ./relayer && go test ./pkg/... -v
- name: Test with the race detector enabled
run: go test ./relayer/... -v -race -count=10
run: cd ./relayer && go test ./pkg/... -v -race -count=10

0 comments on commit 41a8a50

Please sign in to comment.