Sha256: 1e63f4ebd0e9f03bc2da7d86c1ca0bfd94c1837b9d3fb2b925761ab7dc4be2b9

Contents?: true

Size: 733 Bytes

Versions: 4

Compression:

Stored size: 733 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'
          - '3.3'
        gemfile:
          - gemfiles/rails_6.1.gemfile
          - gemfiles/rails_7.0.gemfile
          - gemfiles/rails_7.1.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.4.2 .github/workflows/build.yml
data_migrate-9.4.1 .github/workflows/build.yml
data_migrate-9.4.0 .github/workflows/build.yml
data_migrate-9.3.0 .github/workflows/build.yml