Sha256: f631b1c060b631aba532e99aef191e270e3db4d82b1f432e14eacf44214b6a5f
Contents?: true
Size: 1.17 KB
Versions: 7
Compression:
Stored size: 1.17 KB
Contents
name: Pronto on: [pull_request] permissions: checks: write contents: read pull-requests: write statuses: write jobs: pronto: runs-on: ubuntu-latest env: # `MAKE="make --jobs $(nproc)"` is from # https://build.betterup.com/one-weird-trick-that-will-speed-up-your-bundle-install/ # Only works for MRI # # Using 4 since https://github.com/ruby/setup-ruby use 4 MAKE: "make --jobs 4" steps: - name: Checkout code uses: actions/checkout@v3 with: fetch-depth: 100 - run: git fetch --no-tags --prune --depth=100 origin "+refs/heads/$GITHUB_BASE_REF:refs/remotes/origin/$GITHUB_BASE_REF" - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: "3.2.2" bundler-cache: true - name: Setup pronto run: gem install pronto pronto-rubocop - name: Run Pronto run: bundle exec pronto run -f github_status github_pr -c origin/${{ github.base_ref }} env: PRONTO_PULL_REQUEST_ID: ${{ github.event.pull_request.number }} PRONTO_GITHUB_ACCESS_TOKEN: "${{ github.token }}" BUNDLE_PATH: "vendor/bundle"
Version data entries
7 entries across 7 versions & 1 rubygems