Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/odanado/geth-action

Private chain of Ethereum for test using geth
https://github.com/odanado/geth-action

ethereum

Last synced: 6 days ago
JSON representation

Private chain of Ethereum for test using geth

Awesome Lists containing this project

README

        

# geth-action
Private chain of Ethereum for test using geth

## Example
```yaml
on: [push]

jobs:
test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v2
- name: Geth Action
uses: odanado/[email protected]
id: geth
- name: curl
run: |
curl -X POST --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":67}' ${{ steps.geth.outputs.rpc_url }} -H "Content-Type: application/json"
shell: bash
```