v2.0: Settings params deprecations #296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ruby-saml CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Unit test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- macos-latest | |
ruby-version: | |
- 3.0 | |
- 3.1 | |
- 3.2 | |
- jruby-9.4 | |
- truffleruby | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
# 2023/03/07 - Simplecov is not working on TruffleRuby. | |
# TruffleRuby tests are otherwise passing. | |
if: ${{ matrix.ruby-version != 'truffleruby' }} | |
with: | |
github-token: ${{ secrets.github_token }} | |
parallel: true | |
flag-name: run-${{ matrix.ruby-version }} | |
finish: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
flag-name: run-${{ matrix.ruby-version }} | |
parallel-finished: true |