Sha256: 8a2dc239e15982bf203cb80910a534433d52e83896fbd3f73ca77d6e4b8c4cce

Contents?: true

Size: 948 Bytes

Versions: 13

Compression:

Stored size: 948 Bytes

Contents

name: Test

on: [push, pull_request]

permissions:
  contents: read

env:
  CONSOLE_OUTPUT: XTerm

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.7"
          - "3.0"
          - "3.1"
        
        experimental: [false]
        
        include:
          - os: ubuntu
            ruby: truffleruby
            experimental: true
          - os: ubuntu
            ruby: jruby
            experimental: true
          - os: ubuntu
            ruby: head
            experimental: true
    
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true
    
    - name: Run tests
      timeout-minutes: 10
      run: bundle exec bake test

Version data entries

13 entries across 13 versions & 1 rubygems

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