Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
afterdesign committed Apr 26, 2024
1 parent dbb0594 commit 49a6598
Showing 7 changed files with 37 additions and 38 deletions.
49 changes: 24 additions & 25 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
@@ -10,31 +10,30 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2"]
ruby: ["3.0", "3.1", "3.2", "3.3"]
rails: ["6.0", "6.1", "7.0", "7.1"]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
run: |
gem update --system
bundle config path vendor/bundle
bundle install
- name: Run specs
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
CASTLE_API_SECRET: ${{ secrets.CASTLE_API_SECRET }}
run: |
bundle exec rake
- name: Simplecov Report
if:
${{ matrix.rails == '6.1' && matrix.ruby >= '3.0' }}
uses: aki77/simplecov-report-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
run: |
gem update --system
bundle config path vendor/bundle
bundle install
- name: Run specs
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
CASTLE_API_SECRET: ${{ secrets.CASTLE_API_SECRET }}
run: |
bundle exec rake
- name: Simplecov Report
if: ${{ matrix.rails == '6.1' && matrix.ruby >= '3.0' }}
uses: aki77/simplecov-report-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -14,6 +14,6 @@ gem "rspec"
gem "rspec-rails"
gem "simplecov"
gem "standard"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "vcr"
gem "webmock"
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@ GEM
net-pop
net-smtp
mini_mime (1.1.5)
mini_portile2 (2.8.5)
mini_portile2 (2.8.6)
minitest (5.20.0)
mutex_m (0.2.0)
net-imap (0.4.5)
@@ -130,7 +130,7 @@ GEM
parallel (1.23.0)
parser (3.2.2.1)
ast (~> 2.4.1)
psych (5.1.1.1)
psych (5.1.2)
stringio
public_suffix (5.0.1)
racc (1.7.3)
@@ -159,7 +159,7 @@ GEM
zeitwerk (~> 2.6)
rainbow (3.1.1)
rake (13.1.0)
rdoc (6.6.0)
rdoc (6.6.3.1)
psych (>= 4.0.0)
regexp_parser (2.8.0)
reline (0.4.0)
@@ -212,11 +212,11 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
sqlite3 (1.6.3)
sqlite3 (1.7.3)
mini_portile2 (~> 2.8.0)
sqlite3 (1.6.3-aarch64-linux)
sqlite3 (1.6.3-arm64-darwin)
sqlite3 (1.6.3-x86_64-darwin)
sqlite3 (1.7.3-aarch64-linux)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86_64-darwin)
standard (1.28.2)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
@@ -264,7 +264,7 @@ DEPENDENCIES
rspec
rspec-rails
simplecov
sqlite3
sqlite3 (~> 1.7)
standard
vcr
webmock
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ gem "rspec"
gem "rspec-rails"
gem "simplecov"
gem "standard"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "vcr"
gem "webmock"

2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ gem "rspec"
gem "rspec-rails"
gem "simplecov"
gem "standard"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "vcr"
gem "webmock"

2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ gem "rspec"
gem "rspec-rails"
gem "simplecov"
gem "standard"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "vcr"
gem "webmock"

2 changes: 1 addition & 1 deletion gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ gem "rspec"
gem "rspec-rails"
gem "simplecov"
gem "standard"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "vcr"
gem "webmock"

0 comments on commit 49a6598

Please sign in to comment.