Sha256: 66e57ea59051e867ce7ef4364bec63827e52ffee3a260711e7c671f712dbd804

Contents?: true

Size: 545 Bytes

Versions: 6

Compression:

Stored size: 545 Bytes

Contents

name: Test

on:
  pull_request:
    types:
      - opened
      - reopened
      - synchronize

jobs:
  test:
    runs-on: ubuntu-latest
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.5, 2.6, 2.7, '3.0', 3.1, head]
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{ matrix.ruby }}
      - run: bundle install
      - run: bundle exec rake

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
itax_code-2.0.1 .github/workflows/test.yml
itax_code-2.0.0 .github/workflows/test.yml
itax_code-1.0.1 .github/workflows/test.yml
itax_code-1.0.0 .github/workflows/test.yml
itax_code-0.4.1 .github/workflows/test.yml
itax_code-0.4.0 .github/workflows/test.yml