Skip to content

Commit

Permalink
Update CI (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryTsepelev authored Dec 27, 2024
1 parent d051efc commit 86e4887
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["jruby-9.4.8.0", "3.0", 3.1, 3.2]
ruby: ["jruby-9.4.8.0", 3.1, 3.2, 3.3, 3.4]

gemfile: [
"gemfiles/jruby.gemfile",
Expand All @@ -45,15 +45,19 @@ jobs:
- ruby: "jruby-9.4.8.0"
gemfile: gemfiles/railsmaster.gemfile

- ruby: "3.0"
gemfile: gemfiles/rails_7_2.gemfile
- ruby: "3.4"
gemfile: gemfiles/rails_7_0.gemfile

- ruby: "3.0"
gemfile: gemfiles/jruby.gemfile
- ruby: 3.1
gemfile: gemfiles/jruby.gemfile
- ruby: 3.2
gemfile: gemfiles/jruby.gemfile
- ruby: 3.3
gemfile: gemfiles/jruby.gemfile
- ruby: 3.4
gemfile: gemfiles/jruby.gemfile

include:
- ruby: ruby-head
Expand All @@ -62,6 +66,8 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install SQLite
run: sudo apt-get install libsqlite3-dev
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install SQLite
run: sudo apt-get install libsqlite3-dev
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
Expand Down
6 changes: 6 additions & 0 deletions gemfiles/rails_8_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"

gem "sqlite3", "~> 1.4.4"
gem "activerecord", "~> 8.0.0"

gemspec path: "../"

0 comments on commit 86e4887

Please sign in to comment.