Sha256: 8b5f88ee3324b5abc83788e682345ada1045e1abf4769d12d3deb78e71151334

Contents?: true

Size: 690 Bytes

Versions: 2

Compression:

Stored size: 690 Bytes

Contents

name: Test

on:
  pull_request:
    types: [opened, synchronize]

jobs:
  chat:
    name: Checks
    timeout-minutes: 15
    runs-on: macos-12
    steps:
      - uses: actions/checkout@v3.1.0
        with:
          fetch-depth: '0'
      - uses: actions/cache@v3
        id: bundler-cache
        with:
          path: vendor/bundle
          key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: |
            ${{ runner.os }}-gems-
      - name: Bundler
        run: |
          gem install bundler
          bundle config path vendor/bundle
          bundle check || bundle install --jobs 4 --retry 3
      - name: Rubocop
        run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
xcmonkey-0.1.1 .github/workflows/Test.yml
xcmonkey-0.1.0 .github/workflows/Test.yml