Sha256: 066cb5dbb095afbcad44a3c1054ab1753620df4d4a108f3b47625ae5fc5f0a22

Contents?: true

Size: 684 Bytes

Versions: 3

Compression:

Stored size: 684 Bytes

Contents

name: Tests

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]
  workflow_run:
    workflows: ["Update"]
    types:
      - completed

jobs:
  test:

    strategy:
      matrix:
        os: [ubuntu-latest]
        ruby-version: [2.6, 2.7, '3.0', 3.1, 3.2, head]

    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Run tests for Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
        run: bundle config unset deployment && bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
standard-1.28.5 .github/workflows/test.yml
standard-1.28.4 .github/workflows/test.yml
standard-1.28.3 .github/workflows/test.yml