Sha256: 8fba04daa119b0ee2c9dbabfcb9b57aaca868c9c2b0be8fc1c46b4e75193e246

Contents?: true

Size: 722 Bytes

Versions: 2

Compression:

Stored size: 722 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:
          - '3.0'
          - '3.1'
          - '3.2'
          - '3.3'

    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

2 entries across 2 versions & 1 rubygems

Version Path
standard-1.39.0 .github/workflows/test.yml
standard-1.38.0 .github/workflows/test.yml