Upgrades ruby to 2.7.2

This commit is contained in:
Clarissa Borges 2021-02-28 22:01:11 -03:00 committed by Eric Schultz
parent 045af4b32e
commit 84f0e857a1
8 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
# License: LGPL-3.0-or-later
name: Javascript build and test
env:
ruby: '2.6.6'
ruby: '2.7.2'
on:
push:
paths-ignore:

View file

@ -13,7 +13,7 @@ on:
- NOTICE-ruby
env:
os: ubuntu-latest
ruby: 2.6.6
ruby: '2.7.2'
jobs:
notice_ruby:
runs-on: ${{ env.os }}

View file

@ -34,7 +34,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
ruby: [2.6.6]
ruby: [2.7.2]
steps:
- run: 'echo "Placeholder for webpack"'
main_build:
@ -43,6 +43,6 @@ jobs:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
ruby: [2.6.6]
ruby: [2.7.2]
steps:
- run: 'echo "Placeholder for main_build"'

View file

@ -27,7 +27,7 @@ jobs:
matrix:
os: [ubuntu-latest]
node: [14.6.0]
ruby: [2.6.6]
ruby: [2.7.2]
steps:
- uses: actions/checkout@v2
- name: Setup PostgreSQL with PostgreSQL extensions and unprivileged user

View file

@ -1 +1 @@
2.6.6
2.7.2

View file

@ -2,7 +2,7 @@
source 'https://rubygems.org'
ruby '2.6.6'
ruby '2.7.2'
gem 'rails', '~> 6.1.3'
gem 'jbuilder', '~> 2.10'
gem 'bootsnap', '~> 1.4', require: false # Large rails application booting enhancer

View file

@ -479,7 +479,7 @@ DEPENDENCIES
wisper-rspec (~> 1.1.0)
RUBY VERSION
ruby 2.6.6p146
ruby 2.7.2p137
BUNDLED WITH
1.17.3

View file

@ -25,7 +25,7 @@ describe DirectDebitDetailsController, type: :request do
post '/sepa', params: valid_params
assert_response 200
assert_equal nil, JSON.parse(@response.body)['errors']
assert_nil JSON.parse(@response.body)['errors']
end
it 'is not valid without sepa_params' do