Sha256: d8623fcf9d2390540104cb6e7bad662c11995549f5c1502a4304bd936cb9a353

Contents?: true

Size: 767 Bytes

Versions: 8

Compression:

Stored size: 767 Bytes

Contents

name: CI

on:
  push:
    branches:
      - master
  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - head
          - '3.1'
          - '3.0'
          - '2.7'
          - '2.6'
          - '2.5'
          - jruby
    continue-on-error: ${{ matrix.ruby == 'head' }}
    name: Ruby ${{ matrix.ruby }}
    env:
      JRUBY_OPTS: "--debug"
    steps:
      - uses: actions/checkout@v2
      - name: Install Apt Packages
        run: |
          sudo apt-get install libcurl4-openssl-dev -y
      - uses: ruby/setup-ruby@v1
        continue-on-error: true
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: |
          bundle exec rake

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webmock-3.18.1 .github/workflows/CI.yml
webmock-3.18.0 .github/workflows/CI.yml
webmock-3.15.2 .github/workflows/CI.yml
webmock-3.16.2 .github/workflows/CI.yml
webmock-3.16.1 .github/workflows/CI.yml
webmock-3.15.1 .github/workflows/CI.yml
webmock-3.17.1 .github/workflows/CI.yml
webmock-3.17.0 .github/workflows/CI.yml