Sha256: 62ba6b8f272afbe4d9329fae6538983355c90aa5c5e0f1a6b8679c3921e535d0
Contents?: true
Size: 1005 Bytes
Versions: 2
Compression:
Stored size: 1005 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 container: image: rubylang/ruby:${{ matrix.container_tag }} steps: - uses: actions/checkout@v2 - name: Install dependencies run: | apt-get update apt-get install -y libdb-dev - name: Update rubygems & bundler run: | ruby -v gem update --system - 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rbs-1.7.0.beta.2 | .github/workflows/ruby.yml |
rbs-1.7.0.beta.1 | .github/workflows/ruby.yml |