Sha256: e7b4738741fb53e6745d9922111def0893c2234d4d0e4ba4077aad1903ce8ba7

Contents?: true

Size: 518 Bytes

Versions: 4

Compression:

Stored size: 518 Bytes

Contents

name: CI for PGObjects

on:
  push: {}

jobs:
  lint-and-test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1', '3.2']
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true      

      - name: Run rubocop
        run: bundle exec rubocop

      - name: Run rspec
        run: bundle exec rspec spec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pg_objects-1.0.3 .github/workflows/ci.yml
pg_objects-1.0.2 .github/workflows/ci.yml
pg_objects-1.0.1 .github/workflows/ci.yml
pg_objects-1.0.0 .github/workflows/ci.yml