Sha256: 3ef237321f1a43b68a63ac8b7ea51e0f1b2d2d1215b76ecfcebe189d9662b240

Contents?: true

Size: 590 Bytes

Versions: 5

Compression:

Stored size: 590 Bytes

Contents

name: Ruby

on:
  push:
  pull_request:
  schedule:
    - cron:  '0 0 * * SAT'

jobs:
  test:
    runs-on: ${{matrix.os}}-latest
    strategy:
      matrix:
        os:
          - ubuntu
          - macos

        ruby:
          - 3.1
          - 3.2
          - 3.3
          - 3.4

    steps:
      - uses: actions/checkout@v4
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rspec spec --tag '~integration'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
aws_security_viz-0.2.5.pre.alpha.pre.35 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.34 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.33 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.32 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.31 .github/workflows/ruby.yml