Skip to content

Commit 5e555b3

Browse files
authored
Add rails 81 to build matrix (#61)
And remove eol versions
1 parent eb008cb commit 5e555b3

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Build
22
on:
33
push:
44
pull_request:
5-
schedule:
6-
- cron: '0 0 * * 0'
75
workflow_dispatch:
86

97
jobs:
@@ -12,15 +10,10 @@ jobs:
1210
strategy:
1311
fail-fast: false
1412
matrix:
15-
ruby: ['3.3', '3.2', '3.1']
16-
version: ['70', '71', '72', '80', 'main']
17-
exclude:
18-
- ruby: 3.1
19-
version: main
20-
- ruby: 3.1
21-
version: 80
13+
ruby: ["3.4", "3.3", "3.2"]
14+
version: ["72", "80", "81", "main"]
2215

23-
runs-on: 'ubuntu-latest'
16+
runs-on: "ubuntu-latest"
2417

2518
steps:
2619
- uses: actions/checkout@v3
@@ -37,4 +30,3 @@ jobs:
3730
bundle update
3831
- name: Run test
3932
run: bundle exec rspec
40-

Gemfile.70 renamed to Gemfile.81

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ gemspec
33

44
gem "rspec"
55
gem "byebug"
6-
gem "rails", "~> 7.0.0"
6+
gem "rails", "~> 8.1.0"
77
gem "standard", group: [:development, :test]

0 commit comments

Comments
 (0)