Sha256: 8ee180cbe9e28272375c98c21ce79a58ea2c77c97bdc92ba71182e6409361c59

Contents?: true

Size: 566 Bytes

Versions: 2

Compression:

Stored size: 566 Bytes

Contents

name: Test

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.2
          - 3.1
          - '3.0'
          - 2.7
          - 2.6

    env:
      RAILS_ENV: test

    steps:
    - uses: actions/checkout@v4

    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true

    - name: Build and test
      run: |
        bundle exec rspec spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fast_ci-1.0.11 .github/workflows/test.yml
fast_ci-1.0.10 .github/workflows/test.yml