Sha256: 5b9dde07c654149201aa559c5a0c8360542630cb376cd37678f7618707fa5f89

Contents?: true

Size: 715 Bytes

Versions: 4

Compression:

Stored size: 715 Bytes

Contents

name: CI

on:
  - push
  - pull_request

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ "ubuntu-20.04" ]
        ruby:
          - '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

4 entries across 4 versions & 1 rubygems

Version Path
data_migrate-9.1.3 .github/workflows/build.yml
data_migrate-9.1.2 .github/workflows/build.yml
data_migrate-9.1.1 .github/workflows/build.yml
data_migrate-9.1.0 .github/workflows/build.yml