Sha256: a62dab3b2046285d3b89d31c029af87d9c584350b3579f17f8b18c21c8ec1e60

Contents?: true

Size: 634 Bytes

Versions: 5

Compression:

Stored size: 634 Bytes

Contents

name: Validate Pull Request

on:
  pull_request:
    paths:
      - '**.rb'

# Using the Ruby teams https://github.com/ruby/setup-ruby, not the Github
# team's https://github.com/actions/setup-ruby

jobs:
  validate:
    runs-on: ubuntu-latest
    steps:
      - name: Git clone
        uses: actions/checkout@v4
        with:
          fetch-depth: 2
      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '2.7'
          bundler-cache: true
      - name: Run lint
        id: lint
        run: bundle exec rake lint
      - name: Run tests
        id: test
        run: bundle exec rake doc

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
terradactyl-1.8.2 .github/workflows/validate-pullrequest.yml
terradactyl-1.8.1 .github/workflows/validate-pullrequest.yml
terradactyl-1.8.0 .github/workflows/validate-pullrequest.yml
terradactyl-1.7.0 .github/workflows/validate-pullrequest.yml
terradactyl-1.6.0 .github/workflows/validate-pullrequest.yml