Sha256: 94a5814bc48304ae19fe4d806c4aff776e3eaba30efd007ff3c4d3d3ecfc9e58
Contents?: true
Size: 844 Bytes
Versions: 9
Compression:
Stored size: 844 Bytes
Contents
name: Ruby on: push: branches: - master pull_request: {} jobs: test: runs-on: "ubuntu-latest" strategy: matrix: container_tag: - master-nightly-bionic - 2.6-bionic - 2.7-bionic job: - test - stdlib_test - rubocop validate test_doc build test_generate_stdlib confirm_parser container: image: rubylang/ruby:${{ matrix.container_tag }} steps: - uses: actions/checkout@v1 - name: Install dependencies run: | apt-get update apt-get install -y libdb-dev - name: Install run: | ruby -v gem install bundler bin/setup - name: Run test run: | bundle exec rake ${{ matrix.job }} if: "!(matrix.job == 'stdlib_test' && contains(matrix.container_tag, '2.6'))"
Version data entries
9 entries across 9 versions & 1 rubygems