Sha256: 3b30fd52207b38048fa736d89580b71a574374185fb42c066239ba277ce32c2f

Contents?: true

Size: 781 Bytes

Versions: 3

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: 3.4.22
    - name: Run test
      run: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
net-imap-0.4.10 .github/workflows/test.yml
net-imap-0.4.9.1 .github/workflows/test.yml
net-imap-0.4.9 .github/workflows/test.yml