update gem rbi files #91
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Linters | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Run type check | |
| run: bundle exec srb tc | |
| - name: Lint Ruby files | |
| run: bundle exec rubocop --fail-level error | |
| - name: Verify documentation | |
| run: bin/docs | |
| - name: Run tests | |
| run: bin/test | |
| - name: Verify gem RBIs are up-to-date | |
| run: bin/tapioca gem --verify | |
| - name: Verify duplicates in shims | |
| run: bin/tapioca check-shims |