Skip to content

Commit

Permalink
build: adds ruby 3.3 and rails 7.1 to CI (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
pftg authored Mar 26, 2024
1 parent 369facf commit 104c375
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ jobs:
matrix:
os: [ubuntu-latest]
ruby: [
"2.7",
"3.0",
"3.1",
"3.2",
"3.3",
]
gemfile: [
"Gemfile-rails.6.1.x",
"Gemfile-rails.7.0.x"
"Gemfile-rails.7.1.x"
]
experimental: [false]
include:
- ruby: "3.2"
- ruby: "3.3"
os: ubuntu-latest
gemfile: Gemfile-rails-edge
experimental: true
Expand All @@ -31,9 +33,9 @@ jobs:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '18'

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/Gemfile-rails.7.1.x
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://rubygems.org'

gem 'rails', '~> 7.1.0'

gemspec path: '../vite_ruby'
gemspec path: '../vite_rails'
gemspec path: '../vite_plugin_legacy'

0 comments on commit 104c375

Please sign in to comment.