-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (47 loc) · 1.24 KB
/
build.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
49
50
51
52
name: Build
on:
- push
- pull_request
concurrency: # Borrowed from https://github.com/nodejs/node/pull/42017
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
ruby:
- "3.1"
- "3.0"
- "2.7"
rails:
- "5.1"
- "6.0"
- "6.1"
- "7.0"
exclude:
- ruby: "2.7"
rails: "7.0"
- ruby: "3.0"
rails: "5.1"
- ruby: "3.1"
rails: "5.1"
- ruby: "3.1"
rails: "6.0"
- ruby: "3.1"
rails: "6.1"
runs-on: 'ubuntu-latest'
env:
BUNDLE_GEMFILE: gemfiles/rails${{ matrix.rails }}.gemfile
RUBYOPT: "--disable-error_highlight"
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup project
run: bundle install
- name: Run test suite
run: bundle exec rake spec