Sha256: 36b1f30bd14b48c4316ba180abf04e22feafbe84e9ddca9324ea66fe6a08d284

Contents?: true

Size: 1.53 KB

Versions: 19

Compression:

Stored size: 1.53 KB

Contents

name: Test
on:
  push:
    branches:
      - '**'
  schedule:
    - cron: '0 0 * * MON'

concurrency:
  group: '${{ github.ref }}'
  cancel-in-progress: true

jobs:
  test:
    name: 'Test the gem (Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails }})'
    runs-on: ubuntu-22.04
    timeout-minutes: 5
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.5', '2.7']
        rails: ['5.2']
    env:
      BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
    steps:
      - uses: actions/checkout@v3

      - name: Install the correct Ruby version
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
          rubygems: '3.3.26'

      - name: Prepare the virtual environment
        uses: hausgold/actions/ci@master
        with:
          clone_token: '${{ secrets.CLONE_TOKEN }}'
          settings: '${{ github.repository }}'
          target: ci/gem-test

      - name: Run the gem tests
        run: make test

      - name: Upload the code coverage report
        run: coverage

  trigger-docs:
    name: Trigger the documentation upload
    runs-on: ubuntu-22.04
    timeout-minutes: 2
    needs: test
    if: github.ref == 'refs/heads/master'
    steps:
      - name: Prepare the virtual environment
        uses: hausgold/actions/ci@master
        with:
          clone_token: '${{ secrets.CLONE_TOKEN }}'
          settings: '${{ github.repository }}'
          target: ci/noop

      - name: Trigger the documentation upload
        run: workflow documentation

Version data entries

19 entries across 19 versions & 8 rubygems

Version Path
factory_bot_instrumentation-1.1.1 .github/workflows/test.yml
factory_bot_instrumentation-1.1.0 .github/workflows/test.yml
grape-jwt-authentication-2.2.0 .github/workflows/test.yml
immoscout-1.5.0 .github/workflows/test.yml
jabber_admin-1.2.0 .github/workflows/test.yml
keyless-1.2.0 .github/workflows/test.yml
pricehubble-1.1.0 .github/workflows/test.yml
rimless-1.4.0 .github/workflows/test.yml
conversejs-3.5.0 .github/workflows/test.yml
factory_bot_instrumentation-1.0.2 .github/workflows/test.yml
factory_bot_instrumentation-1.0.1 .github/workflows/test.yml
grape-jwt-authentication-2.1.0 .github/workflows/test.yml
keyless-1.1.0 .github/workflows/test.yml
jabber_admin-1.1.0 .github/workflows/test.yml
rimless-1.3.0 .github/workflows/test.yml
pricehubble-1.0.0 .github/workflows/test.yml
immoscout-1.4.0 .github/workflows/test.yml
factory_bot_instrumentation-1.0.0 .github/workflows/test.yml
conversejs-3.4.0 .github/workflows/test.yml