https://github.com/odanado/geth-action
Private chain of Ethereum for test using geth
https://github.com/odanado/geth-action
ethereum
Last synced: 2 months ago
JSON representation
Private chain of Ethereum for test using geth
- Host: GitHub
- URL: https://github.com/odanado/geth-action
- Owner: odanado
- Created: 2021-03-21T09:49:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-07T03:54:36.000Z (over 3 years ago)
- Last Synced: 2025-04-30T22:51:27.669Z (2 months ago)
- Topics: ethereum
- Language: Shell
- Homepage:
- Size: 21.5 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```