Sha256: 881203ebf7727ea9c18ecb46250b0af831081a4e11f2c1172a3ab6b3d2cd3347

Contents?: true

Size: 786 Bytes

Versions: 8

Compression:

Stored size: 786 Bytes

Contents

name: Verify

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

jobs:
  test:
    runs-on: ubuntu-18.04
    timeout-minutes: 40

    strategy:
      fail-fast: true
      matrix:
        ruby:
          - 2.6
          - 2.7
          - 3.0
        test_cmd:
          - bundle exec rspec

    env:
      RAILS_ENV: test

    name: 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

8 entries across 8 versions & 2 rubygems

Version Path
rex-core-0.1.27 .github/workflows/verify.yml
rex-exploitation-0.1.29 .github/workflows/verify.yml
rex-core-0.1.26 .github/workflows/verify.yml
rex-core-0.1.25 .github/workflows/verify.yml
rex-core-0.1.24 .github/workflows/verify.yml
rex-core-0.1.23 .github/workflows/verify.yml
rex-core-0.1.22 .github/verify.yml
rex-exploitation-0.1.28 .github/workflows/verify.yml