Sha256: f4f882679514760f5a73e63ae996c5cff89306ba3c2fd8d35ebb4eab8c293463

Contents?: true

Size: 1 KB

Versions: 5

Compression:

Stored size: 1 KB

Contents

name: CI

on: [push, pull_request]

jobs:
  rubies:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [ ruby-head, '3.1', '3.0', '2.7', '2.6', '2.5', '2.4', '2.3', '2.2', truffleruby ]
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: bundle install
      - name: Run test
        run: rake
      - name: Install gem
        run: rake install
  platforms:
    strategy:
      matrix:
        os: [macos]
        ruby: ['3.0']
    runs-on: ${{ matrix.os }}-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: bundle install
      - name: Run test
        run: rake
      - name: Install gem
        run: rake install

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stackprof-0.2.25 .github/workflows/ci.yml
stackprof-0.2.24 .github/workflows/ci.yml
stackprof-0.2.23 .github/workflows/ci.yml
stackprof-0.2.22 .github/workflows/ci.yml
stackprof-0.2.21 .github/workflows/ci.yml