Sha256: 356fec3d0f9542e5c0e36b05ac4942b5a2fd1a06d3d5e9e54848a175e70ed0ff
Contents?: true
Size: 737 Bytes
Versions: 4
Compression:
Stored size: 737 Bytes
Contents
name: CI on: [push, pull_request] jobs: build: name: >- Ruby ${{ matrix.ruby }} env: CI: true RAILS_ENV: test runs-on: ${{ matrix.os }} if: | !( contains(github.event.pull_request.title, '[ci skip]') || contains(github.event.pull_request.title, '[skip ci]')) strategy: fail-fast: true matrix: os: [ ubuntu-latest ] ruby: - '3.1.0' steps: - name: Repo checkout uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests timeout-minutes: 10 run: bundle exec rake spec
Version data entries
4 entries across 4 versions & 1 rubygems