Sha256: c16cc6d3722e1e9a14e9a4055b2d9dc98914b903cedc6f33412156f2f0d8e7ad

Contents?: true

Size: 583 Bytes

Versions: 2

Compression:

Stored size: 583 Bytes

Contents

name: Spec

on:
  push:
    branches:
      - "**"
jobs:
  test:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1', '3.2']

    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: Update system gems
        run: gem update --system
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cfndsl-1.6.0 .github/workflows/spec.yml
cfndsl-1.5.0 .github/workflows/spec.yml