Sha256: c46e4911a270515b9814b6e26498e84a6281c775637dcf6440f4b7e3f8149ebf

Contents?: true

Size: 633 Bytes

Versions: 3

Compression:

Stored size: 633 Bytes

Contents

name: test
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['2.5', '2.6', '2.7']
    services:
      fake-s3:
        image: lphoward/fake-s3
        ports:
          - 4569:4569
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - uses: actions/cache@v1
      id: cache
      with:
        path: vendor/bundler
        key: ${{ hashFiles('Gemfile.lock') }}-${{ matrix.ruby }}
    - run: |
        gem install bundler
        bundle install --path=vendor/bundler
        bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
attachie-1.1.2 .github/workflows/test.yml
attachie-1.1.1 .github/workflows/test.yml
attachie-1.1.0 .github/workflows/test.yml