-
Notifications
You must be signed in to change notification settings - Fork 62
123 lines (101 loc) · 3.19 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
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
115
116
117
118
119
120
121
122
123
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, jruby-9.2, jruby-9.3, jruby-9.4]
gemfile: [rails-5.2.gemfile, rails-6.0.gemfile, rails-6.1.gemfile, rails-7.0.gemfile, rails-main.gemfile]
exclude:
# Rails 5 does not work with Ruby 3
- gemfile: rails-5.2.gemfile
ruby: '3.0'
- gemfile: rails-5.2.gemfile
ruby: 3.1
- gemfile: rails-5.2.gemfile
ruby: 3.2
- gemfile: rails-5.2.gemfile
ruby: 3.3
- gemfile: rails-5.2.gemfile
ruby: jruby-9.4
# Rails 7 requires Ruby >= 2.7
- gemfile: rails-7.0.gemfile
ruby: 2.5
- gemfile: rails-main.gemfile
ruby: 2.5
- gemfile: rails-7.0.gemfile
ruby: 2.6
- gemfile: rails-main.gemfile
ruby: 2.6
- gemfile: rails-7.0.gemfile
ruby: jruby-9.2
- gemfile: rails-main.gemfile
ruby: jruby-9.2
- gemfile: rails-7.0.gemfile
ruby: jruby-9.3
- gemfile: rails-main.gemfile
ruby: jruby-9.3
# Rails 7.1 dropped support for older rubygems
- gemfile: rails-main.gemfile
ruby: 2.7
- gemfile: rails-main.gemfile
ruby: 3.0
steps:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: actions/checkout@v3
- name: Install gems
run: bundle install --gemfile=gemfiles/${{ matrix.gemfile }}
- name: Test
run: BUNDLE_GEMFILE=gemfiles/${{ matrix.gemfile }} bundle exec rake
rubocop:
runs-on: ubuntu-latest
steps:
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- uses: actions/checkout@v2
- name: Install gems
run: bundle install
- name: Rubocop
run: bundle exec rubocop -E -S
test-sample-app:
runs-on: ubuntu-latest
services:
dynamodb:
image: amazon/dynamodb-local:latest
ports:
- 8000:8000
env:
AWS_REGION: us-east-1
AWS_ACCESS_KEY_ID: dummy
AWS_SECRET_ACCESS_KEY: dummy
AWS_SERVICE_ENDPOINT: http://localhost:8000
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
working-directory: ${{ github.workspace }}/sample_app
- name: Create table
run: cd ${{ github.workspace }}/sample_app && bin/rails runner Aws::SessionStore::DynamoDB::Table.create_table
- name: Insert dummy manifest.json
run: |
mkdir -p ${{ github.workspace }}/sample_app/public/packs-test
echo "{\"application.js\":\"/packs-test/js/application-dummy.js\"}" >> ${{ github.workspace }}/sample_app/public/packs-test/manifest.json
- name: Test
run: bundle exec rake test
working-directory: ${{ github.workspace }}/sample_app