Sha256: ddc357d8e9c370b2b4d177d1ef045ce9b3c5458d2804b01ad8adbedb04613cb5

Contents?: true

Size: 664 Bytes

Versions: 1

Compression:

Stored size: 664 Bytes

Contents

name: Ruby CI

on:
  pull_request:
  push:
    branches: master

jobs:
  test:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.version }}
    strategy:
      fail-fast: false
      matrix:
        version:
          - 2.0
          - 2.1
          - 2.2
          - 2.3
          - 2.4
          - 2.5
          - 2.6
          - 2.7
          - 3.0
          - 3.1
          - jruby
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.version }}
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{ matrix.version }}
      - name: Run Tests
        run: bundle exec rake test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
browser_sniffer-2.0.0 .github/workflows/test.yml