Sha256: c805b583175a3b6f29a9935f1eaa5e2ca9c7ee90888795c73abb01d1f417b3d2

Contents?: true

Size: 819 Bytes

Versions: 2

Compression:

Stored size: 819 Bytes

Contents

name: windows
on:
  push:
    branches:
      - '*'
  pull_request:
    branches:
      - '*'
  schedule:
    - cron: '0 0 * * 0'
jobs:
  test:
    strategy:
      matrix:
        ruby: ['2.4.x', '2.5.x', '2.6.x']
      fail-fast: false
    runs-on: windows-latest
    name: Ruby ${{ matrix.ruby }} on Windows
    steps:
      - uses: actions/checkout@master
      - name: Setup ruby ${{ matrix.ruby }}
        uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          architecture: 'x64'
      - name: Install latest bundler
        run: gem install bundler
        shell: powershell
      - name: Install dependencies
        run: bundle install --jobs 4 --retry 3
        shell: powershell
      - name: Run rake test
        run: bundle exec rake test
        shell: powershell

Version data entries

2 entries across 2 versions & 1 rubygems

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