Sha256: d5036d9297675a6f58ec7c5129955f6a15bfbf67ddc7983fa0f858b02255980a

Contents?: true

Size: 738 Bytes

Versions: 16

Compression:

Stored size: 738 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        gemfile: [ activemodel5, activemodel6, activemodel7 ]
        ruby: [2.5, 2.6, 2.7, "3.0", 3.1]
        exclude:
          - gemfile: activemodel7
            ruby: 2.5
          - gemfile: activemodel7
            ruby: 2.6
          - gemfile: activemodel5
            ruby: "3.0"
          - gemfile: activemodel5
            ruby: 3.1
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
valid_email2-5.2.5 .github/workflows/ci.yaml
valid_email2-5.2.4 .github/workflows/ci.yaml
valid_email2-5.2.3 .github/workflows/ci.yaml
valid_email2-5.2.1 .github/workflows/ci.yaml
valid_email2-5.2.0 .github/workflows/ci.yaml
valid_email2-5.1.1 .github/workflows/ci.yaml
valid_email2-5.1.0 .github/workflows/ci.yaml
valid_email2-5.0.5 .github/workflows/ci.yaml
valid_email2-5.0.4 .github/workflows/ci.yaml
valid_email2-5.0.3 .github/workflows/ci.yaml
valid_email2-5.0.2 .github/workflows/ci.yaml
valid_email2-5.0.1 .github/workflows/ci.yaml
valid_email2-5.0.0 .github/workflows/ci.yaml
valid_email2-4.0.6 .github/workflows/ci.yaml
valid_email2-4.0.5 .github/workflows/ci.yaml
valid_email2-4.0.4 .github/workflows/ci.yaml