Sha256: 19a3d1797dd18b63cda14a001b7c205e2361be806269f5210014817f1a62a247

Contents?: true

Size: 662 Bytes

Versions: 4

Compression:

Stored size: 662 Bytes

Contents

name: Test
on:
  push:
    branches: [main]
  pull_request:
  workflow_dispatch:
jobs:
  test:
    name: Test
    strategy:
      matrix:
        os: [ubuntu-latest]
        ruby: ['2.6', '2.7']
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
          bundler-cache: true
      - uses: actions/cache@v2
        with:
          path: "./vendor/bundle"
          key: v1/${{ runner.os }}/ruby-${{ matrix.ruby }}/${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: v1/${{ runner.os }}/ruby-${{ matrix.ruby }}/
      - run: bundle exec rspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
percy-selenium-1.0.1 .github/workflows/test.yml
percy-selenium-1.0.0 .github/workflows/test.yml
percy-selenium-1.0.0.pre.1 .github/workflows/test.yml
percy-selenium-1.0.0.pre.0 .github/workflows/test.yml