Skip to content

Commit

Permalink
Merge pull request #55 from envato/ruby3.2
Browse files Browse the repository at this point in the history
CI: add Ruby 3.2 to the test matrix
  • Loading branch information
orien authored Jan 25, 2023
2 parents b6534ab + 0f25a6b commit 4c59a89
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1' ]
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2' ]
gemfile: [ 'faraday_1.10.0', 'faraday_2.1.0', 'faraday_2.2.0', 'faraday_2.3.0', 'jwt_1.5.6', 'jwt_2.2.3', 'jwt_2.3.0', 'jwt_2.4.1' ]
exclude:
- { ruby: '2.4', gemfile: 'faraday_2.1.0' }
Expand All @@ -20,11 +20,12 @@ jobs:
- { ruby: '2.5', gemfile: 'faraday_2.3.0' }
- { ruby: '3.0', gemfile: 'faraday_1.10.0' }
- { ruby: '3.1', gemfile: 'faraday_1.10.0' }
- { ruby: '3.2', gemfile: 'faraday_1.10.0' }

env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 4c59a89

Please sign in to comment.