Sha256: 88dcb976e7a0a78b507e40b0bc82d08f49463c444c1300d3b759447599b3208c

Contents?: true

Size: 590 Bytes

Versions: 6

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:
          - 2.5
          - 2.6
          - 2.7
          - 3.0

    steps:
      - uses: actions/checkout@v2
      - 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

6 entries across 6 versions & 1 rubygems

Version Path
aws_security_viz-0.2.4.pre.alpha.pre.15 .github/workflows/ruby.yml
aws_security_viz-0.2.4.pre.alpha.pre.14 .github/workflows/ruby.yml
aws_security_viz-0.2.4.pre.alpha.pre.13 .github/workflows/ruby.yml
aws_security_viz-0.2.3 .github/workflows/ruby.yml
aws_security_viz-0.2.3.pre.alpha.pre.12 .github/workflows/ruby.yml
aws_security_viz-0.2.3.pre.alpha.pre.11 .github/workflows/ruby.yml