Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI workflow for EVM RPC testing #1821

Merged
merged 11 commits into from
May 3, 2023
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