Sha256: f6388156ebf4ee6baca6602459687a0593e860bd7fc332ac922fe13aac5be136

Contents?: true

Size: 922 Bytes

Versions: 12

Compression:

Stored size: 922 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]
        ruby: [2.6, 2.7, '3.0']
    runs-on: ${{ matrix.os }}
    steps:
      - name: Checkout source code
        uses: actions/checkout@v2.3.4

      - 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

12 entries across 12 versions & 2 rubygems

Version Path
finapps-6.5.0 .github/workflows/ci.yaml
finapps-6.4.3 .github/workflows/ci.yaml
finapps-6.4.2 .github/workflows/ci.yaml
finapps-6.4.1 .github/workflows/ci.yaml
finapps-6.4.0 .github/workflows/ci.yaml
finapps-6.3.1 .github/workflows/ci.yaml
finapps_core-6.0.1 .github/workflows/ci.yaml
finapps-6.3.0 .github/workflows/ci.yaml
finapps-6.2.0 .github/workflows/ci.yaml
finapps-6.1.0 .github/workflows/ci.yaml
finapps-6.0.0 .github/workflows/ci.yaml
finapps_core-6.0.0 .github/workflows/ci.yaml