Sha256: c641490ded61d806110917721902966d66a104e750f7c07abb91cbbf8f350a19

Contents?: true

Size: 1.41 KB

Versions: 2

Compression:

Stored size: 1.41 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 }})'
    runs-on: ubuntu-22.04
    timeout-minutes: 5
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.5', '2.7']
    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

2 entries across 2 versions & 1 rubygems

Version Path
billomat-1.1.0 .github/workflows/test.yml
billomat-1.0.0 .github/workflows/test.yml