Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryTsepelev committed Dec 27, 2024
1 parent d051efc commit 2d122be
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 7 additions & 4 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,16 @@ jobs:
- ruby: "jruby-9.4.8.0"
gemfile: gemfiles/railsmaster.gemfile

- ruby: "3.0"
gemfile: gemfiles/rails_7_2.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 +63,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 2d122be

Please sign in to comment.