Sha256: bcf0890fb8648c0603b421bee78d18b1329485f96de7c793a0cd8cc0b5885f33

Contents?: true

Size: 738 Bytes

Versions: 5

Compression:

Stored size: 738 Bytes

Contents

name: CI
on:
  pull_request:

jobs:
  minitest:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repo
        uses: actions/checkout@v2

      - name: Install Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6
          bundler-cache: false

      - name: Install Gems
        run: bin/bundle

      - name: Run Minitest
        run: bin/rake test
  rubocop:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repo
        uses: actions/checkout@v2

      - name: Install Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6
          bundler-cache: false

      - name: Install Gems
        run: bin/bundle

      - name: Run Rubocop
        run: bin/rubocop

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hash_deep_diff-0.8.0 .github/workflows/ci.yml
hash_deep_diff-0.7.0 .github/workflows/ci.yml
hash_deep_diff-0.6.0 .github/workflows/ci.yml
hash_deep_diff-0.5.0 .github/workflows/ci.yml
hash_deep_diff-0.4.1 .github/workflows/ci.yml