Sha256: bd3122a3d76452d9b4107d4ba53d9656bc1b368c51ad820790b82a491bb3f0d2

Contents?: true

Size: 504 Bytes

Versions: 1

Compression:

Stored size: 504 Bytes

Contents

name: CI for PGObjects

on:
  push: {}

jobs:
  lint-and-test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['3.2', '3.3']
    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

1 entries across 1 versions & 1 rubygems

Version Path
pg_objects-1.4.0 .github/workflows/ci.yml