Sha256: 3a04755138ab9c1d92ade775f17e543d3b8f31ff8316cc8a3dfb6cea36f6da34

Contents?: true

Size: 966 Bytes

Versions: 8

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:
          - "2.7"
          - "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

8 entries across 8 versions & 1 rubygems

Version Path
bake-modernize-0.16.1 template/actions/.github/workflows/test.yaml
bake-modernize-0.16.0 template/actions/.github/workflows/test.yaml
bake-modernize-0.15.1 template/actions/.github/workflows/test.yaml
bake-modernize-0.15.0 template/actions/.github/workflows/test.yaml
bake-modernize-0.14.4 template/actions/.github/workflows/test.yaml
bake-modernize-0.14.3 template/actions/.github/workflows/test.yaml
bake-modernize-0.14.2 template/actions/.github/workflows/test.yaml
bake-modernize-0.14.1 template/actions/.github/workflows/test.yaml