Bump version to v0.7.2 #3985
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: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
ruby: ["3.0", "3.1", "3.2"] | |
exclude: | |
- os: windows-latest | |
ruby: "3.3" | |
runs-on: ${{ matrix.os }} | |
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 1 | |
- name: Check if documentation is up to date | |
run: bundle exec rake ruby_lsp:check_docs | |
- name: Check if all requests are using valid visits | |
run: bundle exec rake check_visit_overrides | |
- name: Typecheck | |
if: matrix.os != 'windows-latest' | |
run: bundle exec srb tc | |
- name: Lint Ruby files | |
run: bundle exec rubocop | |
- name: Run tests | |
run: bundle exec rake |