Sha256: c47a0524bc6731deb3af10eeed59de328ef9ee7f39403cb309408ccd2020da62

Contents?: true

Size: 555 Bytes

Versions: 1

Compression:

Stored size: 555 Bytes

Contents

name: ruby-rspec

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  test:
    name: Test with Ruby ${{ matrix.ruby_version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
          - '3.2'
          - '3.1'

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: Build and test with Rspec
        run: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet_forge-6.0.0 .github/workflows/ruby-rspec.yml