diff --git a/.github/workflows/rpc-tests.yml b/.github/workflows/rpc-tests.yml index 6b2d6d1484..701bef8036 100644 --- a/.github/workflows/rpc-tests.yml +++ b/.github/workflows/rpc-tests.yml @@ -21,13 +21,12 @@ jobs: with: repository: NethermindEth/juno-smoke-tests token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }} - + - name: Setup Go Environment uses: actions/setup-go@v4.1.0 with: - go-version-file: go.mod + go-version-file: rpc-tests/go.mod - name: Execute RPC Tests - run: | - cd rpc-tests/tests - go test -v --nodeURL=${{ github.event.inputs.NODE_ADDRESS }} --network=${{ github.event.inputs.NETWORK }} + working-directory: rpc-tests/tests + run: go test -v --nodeURL=${{ github.event.inputs.NODE_ADDRESS }} --network=${{ github.event.inputs.NETWORK }} \ No newline at end of file