Skip to content

Commit

Permalink
[CI] update Ruby/Rails versions matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
markets committed Mar 17, 2024
1 parent 481f514 commit c32095e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,20 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2"]
gemfile: ["rails_6.0", "rails_6.1", "rails_7.0"]
experimental: [false]
exclude:
- ruby: "3.1"
gemfile: rails_6.0
- ruby: "3.2"
gemfile: rails_6.0
ruby: ["3.0", "3.1", "3.2", "3.3"]
gemfile: [rails_6.1, rails_7.0, rails_7.1]
include:
- ruby: "2.7"
gemfile: rails_5.2
experimental: true
- ruby: "3.0"
gemfile: rails_6.0
- ruby: head
gemfile: rails_7.0
experimental: true
gemfile: rails_7.1
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
continue-on-error: ${{ matrix.experimental }}
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
1 change: 1 addition & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
%w(
7.1
7.0
6.1
6.0
Expand Down
2 changes: 1 addition & 1 deletion MIT-LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2023 Marc Anguera Insa
Copyright (c) 2013-2024 Marc Anguera Insa

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "byebug", group: [:development, :test]
gem "rails", "~> 7.1.0"

gemspec path: "../"

0 comments on commit c32095e

Please sign in to comment.