Sha256: 4dbf4745a86f0804193040531807066918a008d689268050ef8b2ad92fb98c6c

Contents?: true

Size: 732 Bytes

Versions: 3

Compression:

Stored size: 732 Bytes

Contents

name: CI

on:
  - push
  - pull_request

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ "ubuntu-20.04" ]
        ruby:
          - '2.7'
          - '3.0'
          - '3.1'
          - '3.2'
        gemfile:
          - gemfiles/rails_6.0.gemfile
          - gemfiles/rails_6.1.gemfile
          - gemfiles/rails_7.0.gemfile
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
      RAILS_ENV: test
    steps:
      - name: Checkout code
        uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Run tests
        run: bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
data_migrate-10.0.3.rc .github/workflows/build.yml
data_migrate-10.0.0.rc1 .github/workflows/build.yml
data_migrate-9.0.0 .github/workflows/build.yml