Skip to content

Commit

Permalink
Release 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrowanwallee committed Aug 8, 2022
1 parent 05a1efc commit 1af8b35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/publish-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Ruby

on:
Expand All @@ -18,20 +17,22 @@ permissions:

jobs:
test:
strategy:
matrix:
ruby-version: ['2.4.1']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
with:
ruby-version: 2.4.1
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake

- name: Publish to RubyGems
run: |
mkdir -p $HOME/.gem
Expand Down
2 changes: 1 addition & 1 deletion lib/wallee-ruby-sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
=end

module Wallee
VERSION = '3.1.2'
VERSION = '3.1.3'
end

0 comments on commit 1af8b35

Please sign in to comment.