Skip to content

Commit

Permalink
Merge pull request #170 from berkos/add-rails-7.1-to-ci-matrix
Browse files Browse the repository at this point in the history
Adds Rails 7.1.x and Ruby 3.3 to CI matrix
  • Loading branch information
rafaelfranca authored Aug 20, 2024
2 parents 4df3ad2 + 2db6cb7 commit e9548a3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2', 'head', 'truffleruby' ]
rails: [ '6.1', '7.0', 'main' ]
include:
- ruby: '3.2'
rails: '7.0'
- ruby: '3.2'
ruby: [ '2.7', '3.0', '3.1', '3.2', '3.3', 'head', 'truffleruby' ]
rails: [ '6.1', '7.0', '7.1', 'main' ]
exclude:
- ruby: '2.7'
rails: 'main'
- ruby: '3.0'
rails: 'main'

env:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Contributing to GlobalID
=====================

[![Build Status](https://secure.travis-ci.org/rails/globalid.png)](https://travis-ci.org/rails/globalid)
[![CI Build Status](https://github.com/rails/globalid/actions/workflows/ci.yml/badge.svg)](https://github.com/rails/globalid/actions/workflows/ci.yml)

GlobalID is work of [many contributors](https://github.com/rails/globalid/graphs/contributors). You're encouraged to submit [pull requests](https://github.com/rails/globalid/pulls), [propose features and discuss issues](https://github.com/rails/globalid/issues).

Expand Down
6 changes: 6 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"

gem "activemodel", "~> 7.1.0"
gem "railties", "~> 7.1.0"

gemspec path: "../"

0 comments on commit e9548a3

Please sign in to comment.