Sha256: 1fab763e67b759ca2ddc81be6bfae2491c88d0fb7658671ed07f51b18a6e6358

Contents?: true

Size: 576 Bytes

Versions: 6

Compression:

Stored size: 576 Bytes

Contents

name: Tests (Ruby)

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - '*'

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby_version:
          - 3.0
          - 3.1
          - 3.2
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby_version }}
      - name: Ruby version
        run: ruby -v
      - name: Install dependencies
        run: bundle install
      - name: Run tests
        run: bundle exec rspec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flipper-notifications-0.1.6 .github/workflows/ruby-tests.yml
flipper-notifications-0.1.5 .github/workflows/ruby-tests.yml
flipper-notifications-0.1.4 .github/workflows/ruby-tests.yml
flipper-notifications-0.1.3 .github/workflows/ruby-tests.yml
flipper-notifications-0.1.2 .github/workflows/ruby-tests.yml
flipper-notifications-0.1.1 .github/workflows/ruby-tests.yml