Sha256: 30ed8e48f67366e6649409ff4279cc71d70c698f992470cef18d3983ec29c77c

Contents?: true

Size: 598 Bytes

Versions: 4

Compression:

Stored size: 598 Bytes

Contents

---
name: CI

on:
  - push
  - pull_request

jobs:
  rspec:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '3.1'
          - '3.0'
          - '2.7'

    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}

      - name: Bundle
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3

      - name: Run tests
        env:
          DEVISE_ORM: active_record
        run: rake test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
devise-otp-0.6.0 .github/workflows/ci.yml
devise-otp-0.5.0 .github/workflows/ci.yml
devise-otp-0.4.0 .github/workflows/ci.yml
devise-otp-0.3.0 .github/workflows/ci.yml