Sha256: 5d673c8769ad8e71282fb5698c8538853af8c835f0c03ef7c4dfe552c991c1bc

Contents?: true

Size: 922 Bytes

Versions: 6

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.4.0

      - 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

6 entries across 6 versions & 1 rubygems

Version Path
finapps-6.9.1 .github/workflows/ci.yaml
finapps-6.9.0 .github/workflows/ci.yaml
finapps-6.8.0 .github/workflows/ci.yaml
finapps-6.7.1 .github/workflows/ci.yaml
finapps-6.7.0 .github/workflows/ci.yaml
finapps-6.6.1 .github/workflows/ci.yaml