Sha256: 47d7d0b862d3c7aa7c305e173905bcad8a0e60f19d019220ce8d85ce438a3723
Contents?: true
Size: 547 Bytes
Versions: 4
Compression:
Stored size: 547 Bytes
Contents
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: ruby: [2.5, 2.6, 2.7, '3.0', 3.1, 3.2] gemfile: ['mail28'] name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }} env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run test run: | bundle exec rspec
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mail-jdec-1.2.0 | .github/workflows/ci.yml |
mail-jdec-1.1.2 | .github/workflows/ci.yml |
mail-jdec-1.1.1 | .github/workflows/ci.yml |
mail-jdec-1.1.0 | .github/workflows/ci.yml |