Sha256: de3e8a3ccd5acd54686d44e32db96c8400c41af47d26da8f7975d89dd9b89619

Contents?: true

Size: 775 Bytes

Versions: 6

Compression:

Stored size: 775 Bytes

Contents

name: ubuntu

on: [push, pull_request]

jobs:
  build:
    name: build (${{ matrix.ruby }} / ${{ matrix.os }})
    strategy:
      matrix:
        ruby: [ head, '3.1', '3.0', '2.7' ]
        os: [ ubuntu-latest, macos-latest ]
        experimental: [false]
        include:
#          - ruby: 2.6
#            os: ubuntu-latest
#            experimental: true
          - ruby: 2.6
            os: macos-latest
            experimental: false
    runs-on: ${{ matrix.os }}
    continue-on-error: ${{ matrix.experimental }}
    steps:
    - uses: actions/checkout@v3
    - 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

6 entries across 6 versions & 1 rubygems

Version Path
net-imap-0.3.4.1 .github/workflows/test.yml
net-imap-0.3.4 .github/workflows/test.yml
net-imap-0.3.3 .github/workflows/test.yml
net-imap-0.3.2 .github/workflows/test.yml
net-imap-0.3.1 .github/workflows/test.yml
net-imap-0.3.0 .github/workflows/test.yml