Skip to content

Commit

Permalink
CI workflow for EVM RPC testing (#1821)
Browse files Browse the repository at this point in the history
* Add workflow for testing evm rpc

* Add test workflow for EVM RPCs

* Rename EVM RPC Test

* Rename tests

* Rename workflow job

* Fix typo on environment var on CI

* Rename tag 'test/rpc_evm' to 'evm'

* Set NODE_URL to point devnet
  • Loading branch information
dcorral authored May 3, 2023
1 parent 13fc2a2 commit 069442c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests-evm-rpc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Tests - EVM
on:
workflow_dispatch:
env:
NODE_URL: "http://35.187.53.161:20551/"
AUTH_ID: ${{ secrets.INFURA_GOERLI_PROJECT_ID }}
AUTH_PASS: ${{ secrets.INFURA_GOERLI_API_KEY }}
jobs:
node-rpc-tests:
name: E2E tests
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: '^1.17.0'
- uses: actions/checkout@v3
with:
repository: 'DeFiCh/go-ethlibs'
- name: Run e2e tests
run: go test -v ./node/rpc_test.go

0 comments on commit 069442c

Please sign in to comment.