8000 Merge branch 'release/v18.x.x' into facs95/backport-insecure · evmos/evmos@6ba2d34 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(jsonrpc): add support for allow-insecure-unlock (#2375) #3435

feat(jsonrpc): add support for allow-insecure-unlock (#2375)

feat(jsonrpc): add support for allow-insecure-unlock (#2375) #3435

Workflow file for this run

name: Solidity Test
on:
pull_request:
branches:
- main
- release/**
jobs:
test-solidity:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.sol
**/**.go
go.mod
go.sum
*.toml
- name: Test Solidity
run: |
make test-solidity
if: env.GIT_DIFF
0