Sha256: f28d9f4f28c27d8651913aafac3dfb65791f054279ba7f1d6097d7ea10341f98

Contents?: true

Size: 754 Bytes

Versions: 3

Compression:

Stored size: 754 Bytes

Contents

name: CI

on:
  - push
  - pull_request

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ "ubuntu-20.04" ]
        ruby:
          - '3.1'
          - '3.2'
          - '3.3'
        gemfile:
          - gemfiles/rails_6.1.gemfile
          - gemfiles/rails_7.0.gemfile
          - gemfiles/rails_7.1.gemfile
          - gemfiles/rails_7.2.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-11.0.0.rc3 .github/workflows/build.yml
data_migrate-11.0.0.rc .github/workflows/build.yml
data_migrate-9.4.4 .github/workflows/build.yml