Adapt error_msg on forgotten test #657
This file contains hidden or 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: | |
| rubocop: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: true | |
| TESTOPTS: '-v' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby 3.3 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.3 | |
| bundler-cache: true | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Run RuboCop | |
| run: bundle exec rubocop --parallel | |
| test: | |
| name: Unit test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-22.04 | |
| - macos-latest | |
| - windows-latest | |
| ruby-version: | |
| - 3.0 | |
| - 3.1 | |
| - 3.2 | |
| - 3.3 | |
| - 3.4 | |
| - jruby-9.4 | |
| - jruby-10.0 | |
| - truffleruby | |
| exclude: | |
| - os: windows-latest | |
| ruby-version: jruby-9.4 | |
| - os: windows-latest | |
| ruby-version: jruby-10.0 | |
| - os: windows-latest | |
| ruby-version: truffleruby | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - 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 | |
| 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 |