Sha256: fb1de07278874618e699d4328922d2b82249f7192a990a3d8f9a4d79110d7be3

Contents?: true

Size: 664 Bytes

Versions: 2

Compression:

Stored size: 664 Bytes

Contents

name: tests

on:
  push:
  pull_request:
  schedule:
    - cron: '11 11 14 * *' # at 11:11 am on the 14th of every month

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: [ '2.4', '2.7', '3.0', '3.1', '3.2', '3.3', 'ruby-head', 'jruby-head' ]

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: bundle install --jobs 4
      - name: Test with Rake
        run: bundle exec rake
      - uses: codecov/codecov-action@v3
        if: matrix.ruby == '3.2'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
character_set-1.8.0-java .github/workflows/tests.yml
character_set-1.8.0 .github/workflows/tests.yml