Sha256: 78e5e3c9f87a54803be31a9deb309c933fc863d4789d9956abcedcde1158ffe6

Contents?: true

Size: 735 Bytes

Versions: 1

Compression:

Stored size: 735 Bytes

Contents

name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.7]
        pg: [10, 11, 12, 13]
    runs-on: ubuntu-latest
    continue-on-error: ${{ matrix.ruby == 'debug' }}

    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
        ruby-version: ${{ matrix.ruby }}
    - uses: Daniel-Marynicz/postgresql-action@0.1.0
      with:
        postgres_image_tag: ${{ matrix.pg }}
        postgres_db: attr_vault
        postgres_password: hunter2

    - run: bundle install
    - run: DATABASE_URL="postgres://postgres:hunter2@localhost/attr_vault" bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
attr_vault-2.1.2 .github/workflows/ci.yml