Skip to content

Upgrade Ruby LSP to v0.20 (#480) #2460

Upgrade Ruby LSP to v0.20 (#480)

Upgrade Ruby LSP to v0.20 (#480) #2460

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
gemfile:
- Gemfile
- gemfiles/Gemfile-rails-main
ruby: ["3.2", "3.3"]
include:
- gemfile: "gemfiles/Gemfile-rails-main"
experimental: true
runs-on: ${{ matrix.os }}
timeout-minutes: 15
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
continue-on-error: ${{ !!matrix.experimental }}
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} with ${{matrix.gemfile}}
steps:
- uses: actions/checkout@v4
- name: Remove Gemfile.lock
if: (matrix.gemfile == 'Gemfile') && (matrix.ruby == 'head')
run: "rm ${{ matrix.gemfile }}.lock"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler: latest
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
cache-version: 7
- name: Run tests
run: bundle exec rake
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler: latest
bundler-cache: true
- name: Typecheck
run: bundle exec srb tc
- name: Lint Ruby files
run: bin/rubocop