Sha256: 15e2a28cabca57c6324aa6b54c1636b2e186100fec35a75717b437c393d1e7d7

Contents?: true

Size: 605 Bytes

Versions: 2

Compression:

Stored size: 605 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.1"
          - "3.2"
          - "3.3"
    
    steps:
    - uses: actions/checkout@v4
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true
    
    - name: Run RuboCop
      timeout-minutes: 10
      run: bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bake-modernize-0.27.1 template/rubocop/.github/workflows/rubocop.yaml
bake-modernize-0.27.0 template/rubocop/.github/workflows/rubocop.yaml