Sha256: 7fcfbbfa5c8cd8955f72dd7c21309d74ead086d4896b1d26a21f445303fcde17

Contents?: true

Size: 723 Bytes

Versions: 6

Compression:

Stored size: 723 Bytes

Contents

name: test
on:
  push:
    branches:
      - master
  pull_request:
    types:
      - opened
      - synchronize
      - reopened
  schedule:
    - cron: "00 15 * * *"
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
          - '2.5'
          - '2.6'
          - '2.7'
          - '3.0'
          - '3.1'
      fail-fast: false
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Install benchmark targets
        run: |
          gem install haml -v 4.0.7
          gem install haml -v 5.0.4
      - run: VERBOSE=1 bundle exec rake

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
benchmark_driver-0.16.5 .github/workflows/test.yml
benchmark_driver-0.16.4 .github/workflows/test.yml
benchmark_driver-0.16.3 .github/workflows/test.yml
benchmark_driver-0.16.2 .github/workflows/test.yml
benchmark_driver-0.16.1 .github/workflows/test.yml
benchmark_driver-0.16.0 .github/workflows/test.yml