Sha256: 84cc14235df3648e4a2d27d00c259841bc781cff5da83c58af8c9c9b2b7aa8b9

Contents?: true

Size: 632 Bytes

Versions: 8

Compression:

Stored size: 632 Bytes

Contents

name: Test External

on: [push, pull_request]

permissions:
  contents: read

env:
  CONSOLE_OUTPUT: XTerm

jobs:
  test:
    name: ${{matrix.ruby}} on ${{matrix.os}}
    runs-on: ${{matrix.os}}-latest
    
    strategy:
      matrix:
        os:
          - ubuntu
          - macos
        
        ruby:
          - "2.7"
          - "3.0"
          - "3.1"
          - "3.2"
    
    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:external

Version data entries

8 entries across 8 versions & 1 rubygems

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