Sha256: 34e9a2cf7cb01c2768b9e1d053a91cabf124fbde11cc6ca8036d90db522658c2

Contents?: true

Size: 688 Bytes

Versions: 1

Compression:

Stored size: 688 Bytes

Contents

name: CI

on: [ push, pull_request ]

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        gemfile:
          - "activerecord-6.0.gemfile"
          - "activerecord-6.1.gemfile"
          - "activerecord-7.0.gemfile"
          - "activerecord-latest.gemfile"
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.0.2
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - name: Run tests
        run: |
          bundle exec rspec --format doc

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
affairs_of_state-0.7.2 .github/workflows/ci.yml