Sha256: 98e34f852570507d306780dbd8dbe2a3234ad45a1c02238011426c22f5d6c625

Contents?: true

Size: 774 Bytes

Versions: 17

Compression:

Stored size: 774 Bytes

Contents

name: stress

on:
  workflow_dispatch:

concurrency:
  group: '${{ github.workflow }}-${{ github.job }}-${{ github.head_ref || github.ref_name }}'
  cancel-in-progress: true

env:
  GC_STRESS: true

jobs:
  rake:
    name: test on ruby-${{ matrix.ruby }} ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        ruby: [ '3.2', '3.1', '3.0', '2.7' ]
        os: [ ubuntu-latest, windows-latest, macos-latest ]

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install Ruby
        uses: ruby/setup-ruby@master
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: Run tests
        run: |
          bundle exec rake
          cat .rspec_status

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
expressir-2.1.15 .github/workflows/stress.yml
expressir-2.1.14 .github/workflows/stress.yml
expressir-2.1.13 .github/workflows/stress.yml
expressir-2.1.12 .github/workflows/stress.yml
expressir-2.1.11 .github/workflows/stress.yml
expressir-2.1.10 .github/workflows/stress.yml
expressir-2.1.9 .github/workflows/stress.yml
expressir-2.1.8 .github/workflows/stress.yml
expressir-2.1.7 .github/workflows/stress.yml
expressir-2.1.6 .github/workflows/stress.yml
expressir-2.1.5 .github/workflows/stress.yml
expressir-2.1.4 .github/workflows/stress.yml
expressir-2.1.3 .github/workflows/stress.yml
expressir-2.1.2 .github/workflows/stress.yml
expressir-2.1.1 .github/workflows/stress.yml
expressir-2.1.0 .github/workflows/stress.yml
expressir-2.0.0 .github/workflows/stress.yml