Sha256: 3cc11d47e097885c84262252fae6be78779d1bbb53ac4424ddeaab5a12014d63

Contents?: true

Size: 912 Bytes

Versions: 3

Compression:

Stored size: 912 Bytes

Contents

name: Build Documentation
on:
  repository_dispatch:
    types: [documentation]

concurrency:
  group: 'docs'

jobs:
  docs:
    name: Build gem documentation
    runs-on: ubuntu-20.04
    timeout-minutes: 5
    steps:
      - uses: actions/checkout@v2

      - name: Install the correct Ruby version
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.5
          bundler-cache: true
          rubygems: latest

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

      - name: Build gem documentation
        run: make docs

      - name: Upload the code coverage report
        run: coverage

      - name: Add this job to the commit status
        run: commit-status '${{ job.status }}'
        if: always()

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
countless-1.0.0 .github/workflows/documentation.yml
billomat-0.4.1 .github/workflows/documentation.yml
billomat-0.4.0 .github/workflows/documentation.yml