Sha256: fadab11cad0d67c8991a8bbc293755238a888e2c8739a0eed87e7ba5a7123545

Contents?: true

Size: 753 Bytes

Versions: 3

Compression:

Stored size: 753 Bytes

Contents

name: CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - "*"

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu]
        # We still kind of support Ruby 1.8.7
        ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "head", "jruby"]

    name: >-
      ${{matrix.os}}:ruby-${{matrix.ruby}}
    runs-on: ${{matrix.os}}-latest
    continue-on-error: ${{matrix.ruby == 'head' || matrix.ruby == 'jruby'}}

    steps:
      - name: Check out
        uses: actions/checkout@v4

      - name: Set up ruby and bundle
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
          bundler-cache: true

      - name: Run rake
        run: |
          bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
http-cookie-1.0.8 .github/workflows/ci.yml
http-cookie-1.0.7 .github/workflows/ci.yml
http-cookie-1.0.6 .github/workflows/ci.yml