Sha256: 7f3ea31414d13e515886b3eec496bdeb34ea5b1be33c804b732ffa0f03fe3fcc

Contents?: true

Size: 911 Bytes

Versions: 3

Compression:

Stored size: 911 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.6]
        active_record: [5.2, 6.0]
        dry_types: [1.0, 1.2]

        include:
          - ruby: 2.7
            active_record: 6.1
            dry_types: 1.5
          # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
          - ruby: '3.0'
            active_record: 6.1
            dry_types: 1.5

    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        # bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - run: ACTIVERECORD=${{ matrix.active_record}} DRY_TYPES=${{ matrix.dry_types }} bundle install
    - run: ACTIVERECORD=${{ matrix.active_record}} DRY_TYPES=${{ matrix.dry_types }} bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
disposable-0.6.3 .github/workflows/ci.yml
disposable-0.6.2 .github/workflows/ci.yml
disposable-0.6.1 .github/workflows/ci.yml