Sha256: 41d6d7aeaeab297f84abd4ab83ff470b9a4ee104ab1f19305db2f8b9b664d7ec

Contents?: true

Size: 794 Bytes

Versions: 3

Compression:

Stored size: 794 Bytes

Contents

name: Main
on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main
jobs:
  test:
    name: 'CI Tests'
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
        ruby: [jruby, truffleruby, 2.5, 2.6, 2.7, '3.0', head]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2.3.4
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rspec
      - uses: codecov/codecov-action@v1.5.0
        with:
          name: ${{ matrix.ruby }}
          file: ./coverage/coverage.xml
      - run: bundle exec rubocop
        if: matrix.ruby == '3.0'

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/docile-1.4.0/.github/workflows/main.yml
op_connect-0.1.2 vendor/bundle/ruby/3.1.0/gems/docile-1.4.0/.github/workflows/main.yml
docile-1.4.0 .github/workflows/main.yml