Sha256: 6df39790b6ce98b9538f76ba96bc7b4df113d03c3d2c06d9b3c3e4e0384a980a
Contents?: true
Size: 1.24 KB
Versions: 5
Compression:
Stored size: 1.24 KB
Contents
--- name: CI on: push: branches: - master paths-ignore: - "bin/**" - "examples/**" - "*.md" pull_request: branches: - master paths-ignore: - "bin/**" - "examples/**" - "*.md" jobs: tests: name: Ruby ${{ matrix.ruby }} runs-on: ${{ matrix.os || 'ubuntu-latest' }} strategy: fail-fast: false matrix: ruby: - "2.0" - "2.1" - "2.3" - "2.4" - "2.5" - "2.6" - "3.0" - "3.1" - "3.2" - "3.3" - ruby-head - jruby-9.2 - jruby-9.3 - jruby-9.4 - jruby-head - truffleruby-head include: - ruby: "2.2" os: ubuntu-20.04 - ruby: "2.7" coverage: true env: COVERAGE: ${{ matrix.coverage }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rake ci
Version data entries
5 entries across 5 versions & 1 rubygems