Sha256: 885a528fb3e51ce007a4e4b3f54a3902ec1e0f7c686fd5d69044e228105e3e80

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

Contents

name: CI
on:
  push:
    paths-ignore:
      - '*.md'
    branches:
      - main
  pull_request:

jobs:
  linting:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Setup Ruby 3.x
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3
          bundler-cache: true

      - name: Rubocop
        run: bundle exec rubocop --format progress

  test:
    needs: [ linting ]
    name: test ${{ matrix.ruby }}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [ ruby-3.1, ruby-3.2, ruby-3.3 ]
        experimental: [false]
        include:
          - ruby: head
            experimental: true
          - ruby: truffleruby-head
            experimental: true
    steps:
      - uses: actions/checkout@v4

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: RSpec
        continue-on-error: ${{ matrix.experimental }}
        run: bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
app-info-3.2.0 .github/workflows/ci.yml
app-info-3.2.0.beta1 .github/workflows/ci.yml