8000 Merge branch 'main' into dependabot/go_modules/google.golang.org/grpc-1.69.4 · evmos/evmos@a4aa8c9 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build(deps): bump google.golang.org/grpc from 1.69.2 to 1.69.4 #4105

build(deps): bump google.golang.org/grpc from 1.69.2 to 1.69.4

build(deps): bump google.golang.org/grpc from 1.69.2 to 1.69.4 #4105

Workflow file for this run

name: Solhint
# This workflow is only run when a .sol file has been changed
on:
pull_request:
permissions: read-all
jobs:
solhint:
name: runner / solhint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6.1.2
id: git_diff
with:
PATTERNS: |
**/**.sol
- uses: actions/setup-node@v4
if: env.GIT_DIFF
- run: npm install -g solhint
if: env.GIT_DIFF
- run: solhint --version
if: env.GIT_DIFF
- run: solhint '**/*.sol'
if: env.GIT_DIFF
0