Sha256: fcdf145607f51d0a9c33f5ae8ba4d8eeb2b83a2891aeffb237ce58c190f6c8c2

Contents?: true

Size: 590 Bytes

Versions: 4

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@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

4 entries across 4 versions & 1 rubygems

Version Path
aws_security_viz-0.2.5.pre.alpha.pre.30 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.29 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.28 .github/workflows/ruby.yml
aws_security_viz-0.2.5.pre.alpha.pre.27 .github/workflows/ruby.yml