Sha256: d2eece3eb526d221b877fcd1b487b68d163a92b4bbbba1178a5d00a19149057f

Contents?: true

Size: 903 Bytes

Versions: 3

Compression:

Stored size: 903 Bytes

Contents

name: Ruby

on:
  push:
  pull_request:
  workflow_dispatch:
  schedule:
    #  # This job runs at 00:00 on Friday.
    - cron: '0 15 * * 5'

jobs:
  ruby-versions:
    uses: ruby/actions/.github/workflows/ruby_versions.yml@master
    with:
      engine: cruby-truffleruby
      min_version: 3.0

  build:
    needs: ruby-versions
    name: build (${{ matrix.ruby }})
    strategy:
      fail-fast: false
      matrix:
        ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Bundle install
      run: |
        bundle install
    - run: bundle exec typeprof --version
    - name: Run the test suite
      run: |
        bundle exec rake TESTOPT=-v
      if: ${{ !startsWith(matrix.ruby, 'truffle') }}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
typeprof-0.21.11 .github/workflows/main.yml
typeprof-0.21.10 .github/workflows/main.yml
typeprof-0.21.9 .github/workflows/main.yml