Sha256: bb36092c9239e056d14dd88463ce7602a5a6434277561cb351cbbf8674eb31b5

Contents?: true

Size: 614 Bytes

Versions: 10

Compression:

Stored size: 614 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:
          - "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

10 entries across 10 versions & 1 rubygems

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