Skip to content

Commit

Permalink
Cleanup CI config.
Browse files Browse the repository at this point in the history
  • Loading branch information
stas committed Jun 23, 2024
1 parent 5f52cdd commit cde36ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ jobs:

strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
rails: ['6.1', '7.0', '7.1']
ruby: ['3.1', '3.2', '3.3']
rails: ['6.1', '7.0.1', '7.1']
exclude:
- ruby: 3.2
rails: 6

- rails: '7.1'
steps:
- uses: actions/checkout@v4

Expand All @@ -29,6 +27,5 @@ jobs:
rm -rf Gemfile.lock
sudo apt-get update
sudo apt-get install libsqlite3-dev
echo $RAILS_VERSION | grep -q '5' && export SQLITE3_VERSION='~> 1.3.6'
bundle
bundle exec rake
2 changes: 1 addition & 1 deletion jsonapi.rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'ransack'
spec.add_development_dependency 'railties', ENV['RAILS_VERSION']
spec.add_development_dependency 'activerecord', ENV['RAILS_VERSION']
spec.add_development_dependency 'sqlite3', ENV['SQLITE3_VERSION']
spec.add_development_dependency 'sqlite3', '~> 1.7'
spec.add_development_dependency 'ffaker'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec-rails'
Expand Down

0 comments on commit cde36ba

Please sign in to comment.