Sha256: d29823b963e3e5f223b7f54e9f61b786e063be6d2ddd54d4fe431b8e81dd790c

Contents?: true

Size: 877 Bytes

Versions: 5

Compression:

Stored size: 877 Bytes

Contents

name: test

on: [push, pull_request]

jobs:
  ruby-versions:
    runs-on: ubuntu-latest
    outputs:
      versions: ${{ steps.versions.outputs.value }}
    steps:
      - id: versions
        run: |
          versions=$(curl -s 'https://cache.ruby-lang.org/pub/misc/ci_versions/all.json' | jq -c '. + ["2.4"]')
          echo "::set-output name=value::${versions}"
  test:
    needs: ruby-versions
    name: build (${{ matrix.ruby }} / ${{ matrix.os }})
    strategy:
      matrix:
        ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
        os: [ ubuntu-latest, macos-latest ]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Install dependencies
      run: bundle install
    - name: Run test
      run: rake test

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/net-pop-0.1.2/.github/workflows/test.yml
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/net-pop-0.1.2/.github/workflows/test.yml
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/net-pop-0.1.2/.github/workflows/test.yml
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/net-pop-0.1.2/.github/workflows/test.yml
net-pop-0.1.2 .github/workflows/test.yml