Sha256: 9044799a126c779bd05b6dddd359eaf8168d37cf956192d2abf5a1a8813b810e

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

name: test
on:
  push:
    branches:
      - main
  pull_request:
    types:
      - opened
      - synchronize
      - reopened
  schedule:
    - cron: "0 15 * * 0"
jobs:
  basic:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.5', '2.6', '2.7', '3.0', '3.1']
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - run: bundle install && bundle exec rake test
      - run: bundle install && bundle exec rake test:sinatra
        env:
          SINATRA: 2.2.4
      - run: bundle install && bundle exec rake test:sinatra
        env:
          SINATRA: 3.0.5
  rails:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7
      - run: bundle install && bundle exec rake test:rails
        env:
          RAILS: 5.2.8
      - run: bundle install && bundle exec rake test:rails
        env:
          RAILS: 6.0.6
      - run: bundle install && bundle exec rake test:rails
        env:
          RAILS: 6.1.7

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slim-5.1.1 .github/workflows/test.yml