Sha256: b6b3965edb5d723b8c61c5196f3235e0f324482ab91154b04eb01939002323fc

Contents?: true

Size: 1.27 KB

Versions: 3

Compression:

Stored size: 1.27 KB

Contents

name: check
on:
  push:
  pull_request:
  schedule:
  - cron: 45 4 * * 3
jobs:
  check:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
        - '2.0'
        - '2.1'
        - '2.2'
        - '2.3'
        - '2.4'
        - '2.5'
        - '2.6'
        - '2.7'
        - '3.0'
        - '3.1'
        - jruby-9.1
        - jruby-9.2
        - jruby-9.3
      fail-fast: false
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ matrix.ruby }}"
        bundler-cache: true
    - run: bundle exec rspec --format documentation
  legacy:
    runs-on: ubuntu-latest
    container: ${{ matrix.container }}
    strategy:
      matrix:
        container:
        - rspec/ci:1.8.7
        - rspec/ci:1.9.3
      fail-fast: false
    steps:
    - uses: actions/checkout@v2
    - run: bundle install
    - run: bundle exec rspec --format documentation
  windows:
    runs-on: windows-latest
    strategy:
      matrix:
        ruby:
        - '2.6'
        - '2.7'
        - '3.0'
        - '3.1'
      fail-fast: false
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ matrix.ruby }}"
        bundler-cache: true
    - run: bundle exec rspec --format documentation

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
image_size-3.2.0 .github/workflows/check.yml
image_size-3.1.0 .github/workflows/check.yml
image_size-3.0.2 .github/workflows/check.yml