Sha256: db8f7aa905c03bc1bb7401ac95b8aed76d4b13a8de3a977f95966ef9b7dab95a
Contents?: true
Size: 890 Bytes
Versions: 2
Compression:
Stored size: 890 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@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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
finapps-6.9.2 | .github/workflows/ci.yaml |
finapps_core-6.0.2 | .github/workflows/ci.yaml |