Sha256: 020d77d880a86a5a905175e035217913e179c965721ceb4eade3ca3f1fdd8767

Contents?: true

Size: 948 Bytes

Versions: 10

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:
          - "3.0"
          - "3.1"
          - "3.2"
        
        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

10 entries across 10 versions & 1 rubygems

Version Path
bake-modernize-0.17.8 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.7 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.6 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.5 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.4 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.3 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.2 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.1 template/actions/.github/workflows/test.yaml
bake-modernize-0.17.0 template/actions/.github/workflows/test.yaml
bake-modernize-0.16.2 template/actions/.github/workflows/test.yaml