fix: upgrade grpc_kit health protobuf #198
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint Ruby | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - "gemfiles/*" | |
| - "Gemfile" | |
| - "**/*.rb" | |
| - "**/*.gemspec" | |
| - ".github/workflows/lint.yml" | |
| pull_request: | |
| paths: | |
| - "gemfiles/*" | |
| - "Gemfile" | |
| - "**/*.rb" | |
| - "**/*.gemspec" | |
| - ".github/workflows/lint.yml" | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUNDLE_GEMFILE: "gemfiles/rubocop.gemfile" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.1 | |
| bundler-cache: true | |
| - name: Lint Ruby code with RuboCop | |
| run: | | |
| bundle exec rubocop | |
| steep: | |
| runs-on: ubuntu-latest | |
| env: | |
| BUNDLE_JOBS: 4 | |
| BUNDLE_RETRY: 3 | |
| BUNDLE_FORCE_RUBY_PLATFORM: 1 | |
| CI: true | |
| strategy: | |
| matrix: | |
| ruby: ["3.2"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run Steep | |
| run: | | |
| bundle exec rbs collection install | |
| bundle exec rake steep |