Sha256: 7170ac56186bcd1804c51fa435e25fa9a3551b98c1a02f8f53f0036d01b03fd8

Contents?: true

Size: 742 Bytes

Versions: 4

Compression:

Stored size: 742 Bytes

Contents

name: Ruby CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby-version: ['3.3', '3.2', '3.1', '3.0', '2.7', '2.6']
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Setup dependencies
        run: |
          gem install bundler -v 2.4.22
          sudo apt-get update --allow-releaseinfo-change
          bundle config set --local path 'vendor/bundle'
          bundle install
      - name: Run tests
        run: |
          bundle exec rspec spec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dbg-rb-0.2.7 .github/workflows/ci.yml
dbg-rb-0.2.6 .github/workflows/ci.yml
dbg-rb-0.2.5 .github/workflows/ci.yml
dbg-rb-0.2.4 .github/workflows/ci.yml