Sha256: 9475ab27d41e39524f56c8aab429c86fc52b3716ec03a6569e8f330c7482bf36

Contents?: true

Size: 576 Bytes

Versions: 5

Compression:

Stored size: 576 Bytes

Contents

name: Spec

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

    runs-on: ubuntu-latest

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

    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

5 entries across 5 versions & 1 rubygems

Version Path
cfndsl-1.4.0 .github/workflows/spec.yml
cfndsl-1.3.9 .github/workflows/spec.yml
cfndsl-1.3.8 .github/workflows/spec.yml
cfndsl-1.3.7 .github/workflows/spec.yml
cfndsl-1.3.6 .github/workflows/spec.yml