Bump Ruby LSP dependency to v0.17.9 #2147
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: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
gemfile: | |
- Gemfile | |
- gemfiles/Gemfile-rails-main | |
ruby: ["3.1", "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@v3 | |
- name: Remove Gemfile.lock | |
if: (matrix.gemfile == 'Gemfile') && (matrix.ruby == 'head' || matrix.os == 'windows-latest') | |
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@v3 | |
- 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 | |
- name: Check if documentation is up to date | |
run: bundle exec rake ruby_lsp:check_docs |