-
-
Notifications
You must be signed in to change notification settings - Fork 36
114 lines (109 loc) · 3.72 KB
/
supported.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Ruby & Rails Current Matrix
env:
K_SOUP_COV_DO: false
on:
push:
branches:
- 'main'
- '*-stable'
- '*-dev'
tags:
- '!*' # Do not execute on tags
pull_request:
branches:
- '*'
# Allow manually triggering the workflow.
workflow_dispatch:
permissions:
contents: read
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
test:
name: Specs - Ruby ${{ matrix.ruby }} & Rails ${{ matrix.rails }} ${{ matrix.name_extra || '' }}
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')"
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
# rspec-rails uses RAILS_VERSION internally
RAILS_VERSION: "~> ${{ matrix.rails }}"
# Our spec suite (not runtime code) uses RAILS_MAJOR_MINOR internally
RAILS_MAJOR_MINOR: ${{ matrix.rails }}
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ruby: "3.3"
appraisal: "rails-7-1"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "7.1"
- ruby: "3.3"
appraisal: "rails-7-0"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "7.0"
- ruby: "3.2"
appraisal: "rails-7-1"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "7.1"
- ruby: "3.2"
appraisal: "rails-7-0"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "7.0"
#- '3.1' - Rails 7.1 on Ruby 3.1 tests are run by coverage.yml
- ruby: "3.1"
appraisal: "rails-7-0"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "7.0"
- ruby: "3.1"
appraisal: "rails-6-1"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "6.1"
- ruby: "truffleruby"
appraisal: "rails-7-1"
rubygems: latest
bundler: latest
gemfile: vanilla
rails: "7.1"
# jruby is not working right now.
# see: https://github.com/pboling/sanitize_email/actions/runs/9554127118/job/26334508122
# - ruby: "jruby"
# appraisal: "rails-7-1"
# rubygems: latest
# bundler: latest
# gemfile: vanilla
# rails: "7.1"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache
with:
path: path/to/dependencies
key: ${{ runner.os }}-${{matrix.ruby}}-${{matrix.appraisal}}-${{ hashFiles('gemfiles/*.gemfile.lock') }}
- name: Setup Ruby & RubyGems
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
rubygems: "${{ matrix.rubygems }}"
bundler: "${{ matrix.bundler }}"
bundler-cache: false
- name: Bundle for Appraisal ${{ matrix.appraisal }} (Rails v${{ matrix.rails}})
run: bundle
- name: Install Appraisal ${{ matrix.appraisal }} (Rails v${{ matrix.rails}}) dependencies
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
- name: Run tests ${{ matrix.appraisal }} (Rails v${{ matrix.rails}})
run: bundle exec appraisal ${{ matrix.appraisal }} bundle exec rake test