Sha256: 8dbb41bced4271c475ad3374c06b64df449adf74cd09f3f8c5c0fbe75fb90f20
Contents?: true
Size: 635 Bytes
Versions: 22
Compression:
Stored size: 635 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@v2 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 spec
Version data entries
22 entries across 22 versions & 2 rubygems