Bump benchmark from 0.4.1 to 0.5.0 #802
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will build a middleman project with bundle | |
| name: Testing For PRs | |
| on: [ pull_request ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0 | |
| with: | |
| bundler-cache: true # would run bundle install | |
| - name: Run the build | |
| run: bundle exec middleman build | |
| env: | |
| RUN_EXTERNAL_CHECKS: true | |
| - name: Verbose build | |
| if: failure() | |
| run: bundle exec middleman build --verbose | |
| env: | |
| RUN_EXTERNAL_CHECKS: true |