Sha256: 0c480bbfd9aafd3d19ea532a5892be0d87a64dcc9b3f8baffd18f5a7db517871

Contents?: true

Size: 1.08 KB

Versions: 10

Compression:

Stored size: 1.08 KB

Contents

name: Coverage

on: [push, pull_request]

permissions:
  contents: read

env:
  CONSOLE_OUTPUT: XTerm
  COVERAGE: PartialSummary

jobs:
  test:
    name: ${{matrix.ruby}} on ${{matrix.os}}
    runs-on: ${{matrix.os}}-latest
    
    strategy:
      matrix:
        os:
          - ubuntu
          - macos
        
        ruby:
          - "3.1"
    
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true
    
    - name: Run tests
      timeout-minutes: 5
      run: bundle exec bake test

    - uses: actions/upload-artifact@v2
      with:
        name: coverage-${{matrix.os}}-${{matrix.ruby}}
        path: .covered.db
  
  validate:
    needs: test
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "3.1"
        bundler-cache: true
    
    - uses: actions/download-artifact@v3
    
    - name: Validate coverage
      timeout-minutes: 5
      run: bundle exec bake covered:validate --paths */.covered.db \;

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bake-modernize-0.14.0 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.13.5 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.13.4 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.13.3 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.13.2 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.13.1 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.13.0 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.12.2 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.12.1 template/actions/.github/workflows/coverage.yaml
bake-modernize-0.12.0 template/actions/.github/workflows/coverage.yaml