Sha256: ac87079c6a0f9b6fa159e88822dc9742d891d4fccd7714d1156745f5f25d93a0

Contents?: true

Size: 673 Bytes

Versions: 4

Compression:

Stored size: 673 Bytes

Contents

name: check
on:
  push:
  pull_request:
  schedule:
  - cron: 45 4 * * 0
jobs:
  check:
    runs-on: "${{ matrix.os }}"
    strategy:
      matrix:
        os:
        - ubuntu-latest
        - macos-latest
        ruby:
        - '2.0'
        - '2.1'
        - '2.2'
        - '2.3'
        - '2.4'
        - '2.5'
        - '2.6'
        - '2.7'
        - '3.0'
        - '3.1'
        - jruby-9.2
      fail-fast: false
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ matrix.ruby }}"
        bundler-cache: true
    - run: make test
    - run: bundle exec image_optim --info
    - run: bundle exec rspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
image_optim_pack-0.8.0.20220117-x86-linux .github/workflows/check.yml
image_optim_pack-0.8.0.20220117-x86_64-linux .github/workflows/check.yml
image_optim_pack-0.8.0.20220117-x86_64-darwin .github/workflows/check.yml
image_optim_pack-0.8.0.20220117 .github/workflows/check.yml