Add versioning to ErrorReporter methods and backfill 7.0 signatures #1405
Workflow file for this run
This file contains 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: CI | |
on: [push, pull_request] | |
env: | |
GIT_DEFAULT_BRANCH: ${{github.event.repository.default_branch}} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Check RBIs and index | |
run: | | |
git fetch origin "$GIT_DEFAULT_BRANCH" | |
bundle exec repo check --gem --ref "origin/$GIT_DEFAULT_BRANCH" |