Sha256: d9d562bd10d6d94d26be3778a4c79ba5f8b225bc8f57ba2f01b0b83bf962331c

Contents?: true

Size: 1.38 KB

Versions: 3

Compression:

Stored size: 1.38 KB

Contents

on: [ push, pull_request ]

jobs:
  ruby-versions:
    uses: ruby/actions/.github/workflows/ruby_versions.yml@master
    with:
      engine: cruby
      min_version: 2.5
  test:
    needs: ruby-versions
    name: >-
      Test (${{ matrix.ruby-version }} / ${{ matrix.os }} / TEST_SYMLINK: ${{ matrix.TEST_SYMLINK }})
    strategy:
      fail-fast: false
      matrix:
        ruby-version: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
        os: [ ubuntu-latest, macos-latest, windows-latest ]
        TEST_SYMLINK: [ yes, no ]
        include:
          - ruby-version: "3.3"
            os: "ubuntu-latest"
            TEST_SYMLINK: yes
            rubyopt: "--enable-frozen-string-literal"
        exclude:
          - ruby-version: "2.5"
            os: "macos-latest"
    runs-on: ${{ matrix.os }}
    env:
      TEST_SYMLINK: ${{ matrix.TEST_SYMLINK }}
    continue-on-error: ${{ matrix.ruby-version == 'head' }}
    steps:
      - uses: actions/checkout@v4
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Run before_script
        run: |
          bundle exec rake before_script
      - name: Run the test suite
        run: |
          bundle exec rake RUBYOPT="${{ matrix.rubyopt }}"
      - name: Run after_script
        run: |
          bundle exec rake after_script

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
es_cli-0.1.0 vendor/bundle/ruby/3.1.0/gems/power_assert-2.0.5/.github/workflows/ci.yml
power_assert-2.0.5 .github/workflows/ci.yml
power_assert-2.0.4 .github/workflows/ci.yml