Sha256: cac37f986c3329465391d22c15378e4840d1f8042b7cf89dcde1b04cb70749a7

Contents?: true

Size: 886 Bytes

Versions: 7

Compression:

Stored size: 886 Bytes

Contents

name: Continuous Integration

on: 
  push: 
    paths-ignore:
      - ".github/**"
      - ".VERSION"
  pull_request:
    paths-ignore:
      - ".github/**"
      - ".VERSION"
jobs:
  test:
    if: "!contains(github.event.head_commit.message, 'skip ci')"
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - name: Checkout source code
        uses: actions/checkout@v3

      - name: Install required ruby version
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true # runs 'bundle install' and caches gems

      - name: Run rspec with coverage
        run: |
          COVERAGE=true bundle exec rspec

      - name: Run rubocop
        run: |
          bundle exec rubocop --parallel

      - name: Run Skunk on Project
        run: |
          gem install skunk
          skunk lib/ 

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
finapps-6.13.1 .github/workflows/ci.yaml
finapps-6.13.0 .github/workflows/ci.yaml
finapps-6.12.0 .github/workflows/ci.yaml
finapps-6.11.0 .github/workflows/ci.yaml
finapps-6.10.2 .github/workflows/ci.yaml
finapps-6.10.1 .github/workflows/ci.yaml
finapps-6.10.0 .github/workflows/ci.yaml