Commit 14ecafc
committed
Migrate from Travis CI to GitHub Actions
- Add GitHub Actions workflow testing Ruby 2.7, 3.0, 3.1, 3.2, 3.3
- Remove outdated Travis CI config (was testing Ruby 2.3-2.5)
- Update README badge
Ruby 3.3 compatibility fixes:
- Update rubocop from 0.71.0 to ~> 1.68 (0.71.0 incompatible with Ruby 3.3)
- Simplify .rubocop.yml - Rails and Performance cops were extracted to
separate gems (rubocop-rails, rubocop-performance) in RuboCop 0.72.
Since sift doesn't need those cops, removed them instead of adding
the extra dependencies.
- Add `require "ostruct"` in test_helper (ostruct moved to gem in Ruby 3.2+)
- Pin minitest to ~> 5.0 for Rails 7.x appraisals (minitest 6.0 has
breaking API changes incompatible with Rails test runner)
- Pin sqlite3 to ~> 1.4 for Rails 7.0/7.1 (Rails 7.0 requires sqlite3 < 2)
Rails version updates:
- Drop Rails 6.1 (end of life, no longer receiving security fixes)
- Add Rails 7.1, 7.2, 8.0 appraisals
- Update activerecord dependency to >= 7.01 parent 8962e91 commit 14ecafc
File tree
16 files changed
+107
-1012
lines changed- .github/workflows
- gemfiles
- lib/sift
- test
16 files changed
+107
-1012
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
0 commit comments