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 dba8002
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/relay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ jobs:
go-version: ${{ steps.tool-versions.outputs.golang_version }}
- name: Install Solana CLI
run: ./scripts/install-solana-ci.sh
- name: Enter relayer directory
run: cd ./relayer
- name: Build
run: go build -v ./relayer/...
run: go build -v ./pkg/...
- name: Test
run: go test ./relayer/... -v
run: go test ./pkg/... -v
- name: Test with the race detector enabled
run: go test ./relayer/... -v -race -count=10
run: go test ./pkg/... -v -race -count=10

0 comments on commit dba8002

Please sign in to comment.