Sha256: 5d7e51af01971de2fee52a43f462ad0a5f69af4e1e44fdb3d9d24f6ec8b220d2

Contents?: true

Size: 1007 Bytes

Versions: 9

Compression:

Stored size: 1007 Bytes

Contents

name: Verify

on:
  push:
    branches:
      - '*'
  pull_request:
    branches:
      - '*'

jobs:
  test:
    runs-on: ${{ matrix.os }}
    timeout-minutes: 40

    strategy:
      fail-fast: true
      matrix:
        ruby:
          - '2.7'
          - '3.0'
          - '3.1'
          - '3.2'
        os:
          - ubuntu-20.04
          - ubuntu-latest
        exclude:
          - { os: ubuntu-latest, ruby: '2.7' }
          - { os: ubuntu-latest, ruby: '3.0' }
        test_cmd:
          - bundle exec rspec

    env:
      RAILS_ENV: test

    name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: ${{ matrix.test_cmd }}
        run: |
          echo "${CMD}"
          bash -c "${CMD}"
        env:
          CMD: ${{ matrix.test_cmd }}

Version data entries

9 entries across 9 versions & 4 rubygems

Version Path
rex-exploitation-0.1.39 .github/workflows/verify.yml
rex-sslscan-0.1.10 .github/workflows/verify.yml
rex-random_identifier-0.1.11 .github/workflows/verify.yml
rex-core-0.1.31 .github/workflows/verify.yml
rex-exploitation-0.1.38 .github/workflows/verify.yml
rex-random_identifier-0.1.10 .github/workflows/verify.yml
rex-exploitation-0.1.37 .github/workflows/verify.yml
rex-sslscan-0.1.9 .github/workflows/verify.yml
rex-core-0.1.30 .github/workflows/verify.yml