Sha256: c49f418ed4f67b0369ed1af758d2ee42e87bc3547407e22bfc3f5d3289169a74
Contents?: true
Size: 591 Bytes
Versions: 1
Compression:
Stored size: 591 Bytes
Contents
name: CI on: push: branches: - master pull_request: branches: - master jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: - 2.5 - 2.6 - 2.7 name: Ruby ${{ matrix.ruby }} test steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby }} uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test run: | gem install bundler --no-document bundle install --jobs 4 --retry 3 bundle exec rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pairing_matrix-3.0.0 | .github/workflows/ruby.yml |