-
Notifications
You must be signed in to change notification settings - Fork 5
48 lines (45 loc) · 1.04 KB
/
main.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
43
44
45
46
47
48
name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} Rails ${{ matrix.rails_version }}
strategy:
matrix:
ruby:
- '3.1'
- '3.2'
- '3.3'
rails_version:
- '7.0'
- '7.1'
- '7.2'
- '8.0'
exclude:
- ruby: '3.1'
rails_version: '8.0'
include:
- ruby: '3.4'
rails_version: '7.2'
- ruby: '3.4'
rails_version: '8.0'
env:
RAILS_VERSION: ${{ matrix.rails_version }}
RUBYOPT: ${{ matrix.ruby == '3.4' && '--parser=parse.y' || '' }}
steps:
- uses: actions/checkout@v2
- name: Remove Gemfile.lock for CI
run: rm Gemfile.lock
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: |
bundle exec rbs collection update
bundle exec rake