Sha256: 3900efa26c2aca588038138951994f44700bb6547e87ba45e0968a0a19ed3a15
Contents?: true
Size: 947 Bytes
Versions: 3
Compression:
Stored size: 947 Bytes
Contents
name: PR checks on: pull_request: types: [opened, reopened, synchronize, ready_for_review] concurrency: group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' cancel-in-progress: true jobs: rspec: name: RSpec with ruby ${{matrix.ruby}} runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: ['2.6', '2.7', '3.0', '3.1', head] steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Test with RSpec run: COVERAGE=true bundle exec rspec rubocop: name: RuboCop runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.1.2 bundler-cache: true - name: Check with RuboCop run: bundle exec rubocop
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
regio-0.3.2 | .github/workflows/checks.yml |
regio-0.3.1 | .github/workflows/checks.yml |
regio-0.3.0 | .github/workflows/checks.yml |