Sha256: 0948ab9869d998100450038c7e2d6633b5b2106149eb66bc44c0fa061d060255

Contents?: true

Size: 490 Bytes

Versions: 7

Compression:

Stored size: 490 Bytes

Contents

name: CI

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-16.04
    strategy:
      matrix:
        ruby: [ '2.5', '2.6' ]
    name: Ruby ${{ matrix.ruby }} sample
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install and run
        run: |
          sudo apt-get -yqq install libpq-dev
          gem install bundler
          bundle install
          bundle exec rspec .

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
acw-1.3.3 .github/workflows/ci.yml
acw-1.3.2 .github/workflows/ci.yml
acw-1.3.1 .github/workflows/ci.yml
acw-1.3.0 .github/workflows/ci.yml
acw-1.2.0 .github/workflows/ci.yml
acw-1.1.2 .github/workflows/ci.yml
acw-0.1.1 .github/workflows/ci.yml