Skip to content

Upgrade to Ruby LSP v0.8.0 and handle breaking changes #475

Upgrade to Ruby LSP v0.8.0 and handle breaking changes

Upgrade to Ruby LSP v0.8.0 and handle breaking changes #475

Workflow file for this run

---
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