-
Notifications
You must be signed in to change notification settings - Fork 154
42 lines (34 loc) · 1.04 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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", "head"]
include:
- ruby: "head"
experimental: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ !!matrix.experimental }}
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