Sha256: 93c2603a4d4dad6c800f2a9b19e25b10d7103891ae738584369bb89bd3d8afd2
Contents?: true
Size: 634 Bytes
Versions: 4
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@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 doc
Version data entries
4 entries across 4 versions & 1 rubygems