Sha256: 8ff4ddf173b99ad28c059017da58d0c5a1ffc86513090c58a1c8836fd5664718
Contents?: true
Size: 1010 Bytes
Versions: 6
Compression:
Stored size: 1010 Bytes
Contents
name: Ruby on: push: branches: - master pull_request: {} jobs: test: runs-on: "ubuntu-latest" strategy: matrix: container_tag: - master-nightly-focal - 3.0-focal - 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 bundler run: | ruby -v gem install bundler - name: bundle config set with run: | echo "NO_MINITEST=true" >> $GITHUB_ENV bundle config set --local without 'minitest' if: "contains(matrix.container_tag, 'master-nightly')" - name: bin/setup run: | bin/setup - name: Run test run: | bundle exec rake ${{ matrix.job }}
Version data entries
6 entries across 6 versions & 1 rubygems