Skip to content

ruby-saml v2.x update #158

ruby-saml v2.x update

ruby-saml v2.x update #158

Workflow file for this run

name: ci
on:
push:
branches:
- 1.x-maintenance
- master
pull_request:
branches:
- 1.x-maintenance
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
gemfile:
- Gemfile
- spec/support/Gemfile.rails7.1
- spec/support/Gemfile.rails7.2
bundler:
- "2"
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v5
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler: ${{ matrix.bundler }}
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake