Sha256: 24284e9f1568c6428789662753d4f339f3800279d4364d3d4b80072990e89109

Contents?: true

Size: 573 Bytes

Versions: 3

Compression:

Stored size: 573 Bytes

Contents

name: CI

on: [ push, pull_request ]

jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.0
          - 3.1
          - 3.2
          - jruby
          # - truffleruby
    name: Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: bundle install --jobs 4 --retry 3
      - name: Run tests
        run: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
python-pickle-0.2.0 .github/workflows/ruby.yml
python-pickle-0.1.1 .github/workflows/ruby.yml
python-pickle-0.1.0 .github/workflows/ruby.yml