bundler/bundler

View on GitHub
.github/workflows/ubuntu-bundler3.yml

Summary

Maintainability
Test Coverage
name: ubuntu-bundler3

on:
  pull_request:

  push:
    branches:
      - staging
      - trying

jobs:
  ubuntu-bundler3:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ 2.4.9, 2.5.7, 2.6.5 ]
        rgv: [ v3.0.6, master ]
    env:
      RGV: ${{ matrix.rgv }}
    steps:
      - uses: actions/checkout@v1
      - name: Setup ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Prepare dependencies
        run: |
          BUNDLER_SPEC_SUB_VERSION=3.0.0 bin/rake override_version
          bin/rake spec:parallel_deps
      - name: Run Test
        run: bin/parallel_rspec spec
      - name: Run Test with realworld
        run: bin/rake spec:realworld
        env:
          BUNDLER_SPEC_PRE_RECORDED: 1
      - name: Run Test with sudo
        run: bin/rake spec:sudo
    timeout-minutes: 60