ninech/netbox-client-ruby

View on GitHub
.github/workflows/rspec.yml

Summary

Maintainability
Test Coverage
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Ruby CI

on: [push, pull_request]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
        ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
        gemfile:
          [
            'gemfiles/faraday1.gemfile',
            'gemfiles/faraday2.gemfile',
          ]
        # Faraday 0.x with Ruby 3.x not supported
        exclude:
          - ruby: '3.0'
            gemfile: gemfiles/faraday0.gemfile
          - ruby: '3.1'
            gemfile: gemfiles/faraday0.gemfile
          - ruby: '3.2'
            gemfile: gemfiles/faraday0.gemfile
          - ruby: '3.3'
            gemfile: gemfiles/faraday0.gemfile
    runs-on: ${{ matrix.os }}
    env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
      BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake spec