Sha256: 125c0ed534a9fa6da74bbce776488f9c5461ccafc6ddb7b0f83027fce79ad8b4

Contents?: true

Size: 631 Bytes

Versions: 3

Compression:

Stored size: 631 Bytes

Contents

on: push
jobs:
  test:
    runs-on: ubuntu-latest

    # https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix
    strategy:
      fail-fast: false
      matrix:
        ruby_version: [2.7, 3.1.2]

    steps:
      - uses: actions/checkout@v2

      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          # Not needed with a .ruby-version file
          ruby-version: ${{ matrix.ruby_version }}
          # runs 'bundle install' and caches installed gems automatically
          bundler-cache: true

      - name: Run tests
        run: |
          bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simple-service-0.3.1 .github/workflows/rspec.yaml
simple-service-0.2.3 .github/workflows/rspec.yaml
simple-service-0.3.0 .github/workflows/rspec.yaml