Sha256: 31e638ce8438bce46c468a47bab7ab191a4a0f82f6c3684042106a069824bb46

Contents?: true

Size: 966 Bytes

Versions: 5

Compression:

Stored size: 966 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:
          - "3.0"
          - "3.1"
          - "3.2"
          - "3.3"
        
        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@v4
    - 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

5 entries across 5 versions & 1 rubygems

Version Path
bake-modernize-0.20.0 template/actions/.github/workflows/test.yaml
bake-modernize-0.19.4 template/actions/.github/workflows/test.yaml
bake-modernize-0.19.3 template/actions/.github/workflows/test.yaml
bake-modernize-0.19.2 template/actions/.github/workflows/test.yaml
bake-modernize-0.19.1 template/actions/.github/workflows/test.yaml