Sha256: b6b60b80a9ae6f80ae0c8dd6de9baf8debe5d28aade57d0db7cbe231a3fdcc3c
Contents?: true
Size: 955 Bytes
Versions: 1
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: ['3.0', '3.1', '3.2', head, jruby, jruby-head, truffleruby, truffleruby-head] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - 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: 2 - 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.2'}} uses: actions/upload-artifact@v4 with: name: drop path: | ./Gemfile.lock ./README.md
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
microsoft_kiota_abstractions-0.14.4 | .github/workflows/ruby.yml |