Sha256: 55eac38c3e3fb33f14ebd9fd785853ff290494174f8c32e44549acc91fb1d4d1
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
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: 1 - name: Run tests run: bundle exec rake - name: Build the gem run: gem build *.gemspec - 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 *.gem
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
microsoft_graph-0.22.2 | .github/workflows/ruby.yml |
microsoft_graph_beta-0.11.0 | .github/workflows/ruby.yml |