Sha256: ba9251cc6e2678d1250f4d8c21ceab32e55141f5a5e33dbd62878d6834064ff5
Contents?: true
Size: 944 Bytes
Versions: 2
Compression:
Stored size: 944 Bytes
Contents
name: CI on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: ruby: [2.5, 2.6] active_record: [5.0, 5.2, 6.0] dry_types: [0.13, 0.14, 0.15, 1.0, 1.1, 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
disposable-0.6.0 | .github/workflows/ci.yml |
disposable-0.5.0 | .github/workflows/ci.yml |