Sha256: 0218d9bbb860b548cc203260bb8c2c3f1df16e7d0c4f89c46dac281b760f2f7f

Contents?: true

Size: 1.51 KB

Versions: 11

Compression:

Stored size: 1.51 KB

Contents

name: build

on:
  pull_request:

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        ruby: [jruby, 3.0.6, 3.1, 3.2]

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Cache dependencies
        uses: actions/cache@v3
        with:
          path: vendor/bundle
          key: ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: |
            ${{ runner.os }}-${{ matrix.ruby }}-gems-
      - name: Install dependencies
        run: |
          bundle config path vendor/bundle
          bundle install --jobs 4 --retry 3
      - name: Run tests
        run: bundle exec rake test

  lint:
    needs: test
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: [3.1]

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Cache dependencies
        uses: actions/cache@v3
        with:
          path: vendor/bundle
          key: ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}
          restore-keys: |
            ${{ runner.os }}-${{ matrix.ruby }}-gems-
      - name: Install dependencies
        run: |
          bundle config path vendor/bundle
          bundle install --jobs 4 --retry 3
      - name: Run linter
        run: bundle exec rubocop

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
legitbot-1.11.7 .github/workflows/pr.yml
legitbot-1.11.6 .github/workflows/pr.yml
legitbot-1.11.5 .github/workflows/pr.yml
legitbot-1.11.4 .github/workflows/pr.yml
legitbot-1.11.3 .github/workflows/pr.yml
legitbot-1.11.2 .github/workflows/pr.yml
legitbot-1.11.1 .github/workflows/pr.yml
legitbot-1.11.0 .github/workflows/pr.yml
legitbot-1.10.6 .github/workflows/pr.yml
legitbot-1.10.5 .github/workflows/pr.yml
legitbot-1.10.4 .github/workflows/pr.yml