Sha256: d01567f9c2ba80599e048ef09e48b87045ba802c1b863dad3caba2514af9d38a

Contents?: true

Size: 923 Bytes

Versions: 9

Compression:

Stored size: 923 Bytes

Contents

name: Development

on: [push, pull_request]

jobs:
  test:
    name: ${{matrix.ruby}} on ${{matrix.os}}
    runs-on: ${{matrix.os}}-latest
    continue-on-error: ${{matrix.experimental}}
    
    strategy:
      matrix:
        os:
          - ubuntu
          - macos
        
        ruby:
          - "2.6"
          - "2.7"
          - "3.0"
        
        experimental: [false]
        env: [""]
        
        include:
          - os: ubuntu
            ruby: truffleruby
            experimental: true
          - os: ubuntu
            ruby: jruby
            experimental: true
          - os: ubuntu
            ruby: head
            experimental: true
    
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true
    
    - name: Run tests
      timeout-minutes: 5
      run: ${{matrix.env}} bundle exec rspec

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
covered-0.15.0 .github/workflows/development.yml
covered-0.14.2 .github/workflows/development.yml
covered-0.14.1 .github/workflows/development.yml
bake-modernize-0.8.2 template/actions/.github/workflows/development.yml
bake-modernize-0.8.1 template/actions/.github/workflows/development.yml
bake-modernize-0.8.0 template/actions/.github/workflows/development.yml
bake-modernize-0.7.0 template/actions/.github/workflows/development.yml
covered-0.14.0 .github/workflows/development.yml
bake-modernize-0.6.0 template/actions/.github/workflows/development.yml