Sha256: eea378db882dd5c5ed1bb1cafe727ba1b5686e651d50235d2b7afa5af2c37447

Contents?: true

Size: 955 Bytes

Versions: 14

Compression:

Stored size: 955 Bytes

Contents

name: Ruby

on:
  workflow_dispatch:
  push:
    branches: [ main ]
  pull_request:

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest]
        ruby-version: ['2.7', '3.0', '3.1', head, jruby, jruby-head, truffleruby, truffleruby-head]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
          bundler: 'latest'
          cache-version: 1
      - name: Run tests
        run: bundle exec rake
      - name: Upload artifacts for ruby version 3 and ubuntu
        if: ${{ matrix.os == 'ubuntu-latest'  && matrix.ruby-version == '3.1'}}
        uses: actions/upload-artifact@v3
        with:
          name: drop
          path: |
            ./Gemfile.lock
            ./README.md

Version data entries

14 entries across 14 versions & 6 rubygems

Version Path
microsoft_graph_core-0.2.0 .github/workflows/ruby.yml
microsoft_kiota_authentication_oauth-0.7.0 .github/workflows/ruby.yml
microsoft_kiota_serialization_json-0.8.0 .github/workflows/ruby.yml
microsoft_graph-0.12.0 .github/workflows/ruby.yml
microsoft_kiota_authentication_oauth-0.6.0 .github/workflows/ruby.yml
microsoft_graph-0.11.0 .github/workflows/ruby.yml
microsoft_kiota_faraday-0.11.0 .github/workflows/ruby.yml
microsoft_kiota_abstractions-0.13.0 .github/workflows/ruby.yml
microsoft_graph_core-0.1.0 .github/workflows/ruby.yml
microsoft_kiota_authentication_oauth-0.5.0 .github/workflows/ruby.yml
microsoft_kiota_faraday-0.10.0 .github/workflows/ruby.yml
microsoft_kiota_serialization_json-0.7.0 .github/workflows/ruby.yml
microsoft_kiota_faraday-0.9.0 .github/workflows/ruby.yml
microsoft_kiota_abstractions-0.12.0 .github/workflows/ruby.yml