Sha256: 71787f230e0da003392ccf53e73d6b3c8a0965200e8b4276a470823276afff0c

Contents?: true

Size: 515 Bytes

Versions: 5

Compression:

Stored size: 515 Bytes

Contents

name: ubuntu

on: [push, pull_request]

jobs:
  build:
    name: build (${{ matrix.ruby }} / ${{ matrix.os }})
    strategy:
      matrix:
        ruby: [ '3.0', 2.7, 2.6, 2.5, 2.4, head ]
        os: [ ubuntu-latest, macos-latest ]
    runs-on: ${{ matrix.os }}
    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
    - name: Run test
      run: rake test

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
net-ftp-0.1.4 .github/workflows/test.yml
net-protocol-0.1.2 .github/workflows/test.yml
net-ftp-0.1.3 .github/workflows/test.yml
net-protocol-0.1.1 .github/workflows/test.yml
net-ftp-0.1.2 .github/workflows/test.yml