Sha256: b7878490700509468527b6098bc961c41dd5b84675bcf0a2990f6c468ab58f27
Contents?: true
Size: 998 Bytes
Versions: 18
Compression:
Stored size: 998 Bytes
Contents
# 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 on: push: branches: [main] pull_request: branches: [main] env: UNIT_API_KEY: "${{secrets.UNIT_API_KEY}}" UNIT_BASE_URL: "${{secrets.UNIT_BASE_URL}}" jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ["2.7", "3.0"] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: bundle exec rake
Version data entries
18 entries across 18 versions & 1 rubygems