Sha256: 37f1290dc16fe3faf25cb02ad5c393d7f6ad31477564b58cd46cf0e9782cdf0f

Contents?: true

Size: 781 Bytes

Versions: 9

Compression:

Stored size: 781 Bytes

Contents

name: ubuntu

on: [push, pull_request]

jobs:
  ruby-versions:
    uses: ruby/actions/.github/workflows/ruby_versions.yml@master
    with:
      engine: cruby
      min_version: 2.7

  build:
    needs: ruby-versions
    name: build (${{ matrix.ruby }} / ${{ matrix.os }})
    strategy:
      matrix:
        ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
        os: [ ubuntu-latest, macos-latest ]
        experimental: [false]
    runs-on: ${{ matrix.os }}
    continue-on-error: ${{ matrix.experimental }}
    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
        rubygems: latest
    - name: Run test
      run: bundle exec rake test

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
net-imap-0.4.8 .github/workflows/test.yml
net-imap-0.4.7 .github/workflows/test.yml
net-imap-0.4.6 .github/workflows/test.yml
net-imap-0.4.5 .github/workflows/test.yml
net-imap-0.4.4 .github/workflows/test.yml
net-imap-0.4.3 .github/workflows/test.yml
net-imap-0.4.2 .github/workflows/test.yml
net-imap-0.4.1 .github/workflows/test.yml
net-imap-0.4.0 .github/workflows/test.yml