Bump rubocop-sorbet from 0.7.0 to 0.7.2 #462
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] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
- name: Check if documentation is up to date | |
run: bundle exec rake ruby_lsp:check_docs | |
- name: Typecheck | |
run: bundle exec srb tc | |
- name: Lint Ruby files | |
run: bin/rubocop | |
- name: Run tests | |
run: bundle exec rake |