Sha256: c078153bc8a0f41ff9c77ce58fed4304ab5302b8409322835b4363f50adc923b

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

name: Tests
on:
  - push
  - pull_request
jobs:
  full_tests:
    strategy:
      fail-fast: false
      matrix:
        os:
          - windows-2016
          - ubuntu-latest
          - macos-latest
        puppet:
          - "~> 5.0"
          - "~> 6.0"
          - "~> 7.0"
        include:
          - puppet: "~> 5.0"
            ruby: 2.4
          - puppet: "~> 6.0"
            ruby: 2.5
          - puppet: "~> 7.0"
            ruby: 2.7

    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
        env:
          PUPPET_VERSION: ${{ matrix.puppet }}
      - name: Set long paths on Windows
        if: ${{ matrix.os == 'windows-2016' }}
        run: Set-ItemProperty 'HKLM:\System\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -value 1
      - env:
          PUPPET_VERSION: ${{ matrix.puppet }}
        run: bundle exec rake full_tests

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
onceover-3.20.0 .github/workflows/tests.yaml
onceover-3.19.2 .github/workflows/tests.yaml
onceover-3.19.1 .github/workflows/tests.yaml