Sha256: e67f67f6011aa7726e2bb560905217407bac1abf0e50918148562d124536c852

Contents?: true

Size: 1.87 KB

Versions: 7

Compression:

Stored size: 1.87 KB

Contents

name: CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  BUNDLE_WITHOUT: "development"
  JRUBY_OPTS: "--dev --debug"

jobs:
  test:
    runs-on: ${{ matrix.os }}

    strategy:
      matrix:
        ruby: [ ruby-2.6, ruby-2.7, ruby-3.0, ruby-3.1 ]
        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
        run: bundle exec rspec --format progress --force-colour

      - name: Prepare Coveralls test coverage report
        uses: coverallsapp/github-action@v1.1.2
        with:
          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
        uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          parallel-finished: true

  lint:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6
          bundler-cache: true

      - name: bundle exec rubocop
        run: bundle exec rubocop --format progress --color

      - run: bundle exec rake verify_measurements

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
direct7-0.0.18 vendor/bundle/ruby/2.7.0/gems/http-5.1.1/.github/workflows/ci.yml
direct7-0.0.17 vendor/bundle/ruby/2.7.0/gems/http-5.1.1/.github/workflows/ci.yml
direct7-0.0.16 vendor/bundle/ruby/2.7.0/gems/http-5.1.1/.github/workflows/ci.yml
direct7-0.0.13 vendor/bundle/ruby/2.7.0/gems/http-5.1.1/.github/workflows/ci.yml
direct7-0.0.12 vendor/bundle/ruby/2.7.0/gems/http-5.1.1/.github/workflows/ci.yml
direct7-0.0.11 vendor/bundle/ruby/2.7.0/gems/http-5.1.1/.github/workflows/ci.yml
http-5.1.1 .github/workflows/ci.yml