.github/workflows/ci.yml in http-5.1.0 vs .github/workflows/ci.yml in http-5.1.1

- old
+ new

@@ -36,9 +36,29 @@ github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: "${{ matrix.ruby }} @${{ matrix.os }}" path-to-lcov: ./coverage/lcov/lcov.info parallel: true + test-flaky: + runs-on: ${{ matrix.os }} + + strategy: + matrix: + ruby: [ jruby-9.3 ] + os: [ ubuntu-latest ] + + steps: + - uses: actions/checkout@v3 + + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + + - name: bundle exec rspec + continue-on-error: true + run: bundle exec rspec --format progress --force-colour + coveralls: needs: test runs-on: ubuntu-latest steps: - name: Finalize Coveralls test coverage report