Skip to content

Commit 7a2cbc9

Browse files
committed
CI against Ruby 3.4
also, run app tests on newer rubies
1 parent f4509f3 commit 7a2cbc9

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
include:
13+
- name: "Ruby 3.4 & Rails 8.0"
14+
ruby-version: "3.4"
15+
rails-version: "8.0"
1316
- name: "Ruby 3.3 & Rails 8.0"
1417
ruby-version: "3.3"
1518
rails-version: "8.0"
@@ -141,13 +144,13 @@ jobs:
141144
fail-fast: false
142145
matrix:
143146
include:
144-
- ruby-version: "3.3"
147+
- ruby-version: "3.4"
145148
rails-version: "8.0"
146-
- ruby-version: "2.7"
149+
- ruby-version: "3.3"
147150
rails-version: "7"
148-
- ruby-version: "2.7"
151+
- ruby-version: "3.2"
149152
rails-version: "7.1"
150-
- ruby-version: "2.7"
153+
- ruby-version: "3.0"
151154
rails-version: "7.0"
152155
- ruby-version: "2.7"
153156
rails-version: "6"

docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
version: "3.7"
22

33
services:
4-
ruby-3.3-rails-8.0:
4+
ruby-3.4-rails-8.0:
55
build:
66
context: .
77
dockerfile: dockerfiles/ruby.dockerfile
88
args:
9-
FROM: ruby:3.3
9+
FROM: ruby:3.4
1010
RAILS_VERSION: 8.0
1111
volumes:
1212
- .:/source:delegated
1313

14-
ruby-2.7-rails-7:
14+
ruby-3.3-rails-7:
1515
build:
1616
context: .
1717
dockerfile: dockerfiles/ruby.dockerfile
1818
args:
19-
FROM: ruby:2.7
19+
FROM: ruby:3.2
2020
RAILS_VERSION: 7
2121
volumes:
2222
- .:/source:delegated
2323

24-
ruby-2.7-rails-7.1:
24+
ruby-3.2-rails-7.1:
2525
build:
2626
context: .
2727
dockerfile: dockerfiles/ruby.dockerfile
2828
args:
29-
FROM: ruby:2.7
29+
FROM: ruby:3.0
3030
RAILS_VERSION: 7.1
3131
volumes:
3232
- .:/source:delegated
3333

34-
ruby-2.7-rails-7.0:
34+
ruby-3.0-rails-7.0:
3535
build:
3636
context: .
3737
dockerfile: dockerfiles/ruby.dockerfile

0 commit comments

Comments
 (0)