Sha256: b8c193c629f6be47f7b3505be65a2b71f402dda1701853ac753ad13e5a7974ba

Contents?: true

Size: 1.69 KB

Versions: 2

Compression:

Stored size: 1.69 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Rspec

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

jobs:
  test:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7'] # , '2.7', '3.0'

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
    # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
    # change this to (see https://github.com/ruby/setup-ruby#versioning):
    # uses: ruby/setup-ruby@v1
      uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
      with:
        ruby-version: ${{ matrix.ruby-version }}
        # bundler-cache: true # runs 'bundle install' and caches installed gems automatically

    - name: Install dependencies
      run: bundle install
    - name: Prepare DB
      run: DB=sqlite RAILS_ENV=test bundle exec rake spec:preparedb
    - name: Run model tests
      run: DB=sqlite bundle exec rake spec:models
    - name: Run controller tests
      run: bundle exec rake spec:controllers
    - name: Run view tests
      run: bundle exec rake spec:views
    - name: Run helper tests
      run: bundle exec rake spec:helpers
    - name: Run route tests
      run: bundle exec rake spec:routing
    - name: Run mailer tests
      run: bundle exec rake spec:mailers
    - name: Run lib tests
      run: bundle exec rake spec:lib

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fat_free_crm-0.20.1 .github/workflows/ruby.yml
fat_free_crm-0.20.0 .github/workflows/ruby.yml