Sha256: f15428da30299a43f558c63138e00076b99cceb0df265c74c7634a079d291389

Contents?: true

Size: 654 Bytes

Versions: 2

Compression:

Stored size: 654 Bytes

Contents

name: ubuntu
on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - '*'
  schedule:
    - cron: '0 0 * * 0'
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['2.6.x', '2.5.x', '2.4.x']
    name: Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@master
      - name: Setup ruby ${{ matrix.ruby }}
        uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          architecture: 'x64'
      - name: Build and test with Rake
        run: |
          gem install bundler
          bundle install --jobs 4 --retry 3
          bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-img_loading_attribute-0.3.0 .github/workflows/ubuntu.yml
middleman-img_loading_attribute-0.2.0 .github/workflows/ubuntu.yml