Update Passenger image and Ruby version to fix repo signing error #1568
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
| name: Test Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| inputs: | |
| fail-fast: | |
| description: 'Stop all jobs if any job fails' | |
| type: boolean | |
| default: true | |
| required: false | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/rubocop.yml | |
| parallel-test: | |
| needs: lint | |
| uses: ./.github/workflows/parallel_ci.yml | |
| secrets: inherit | |
| with: | |
| fail-fast: ${{ github.event_name == 'workflow_dispatch' && inputs.fail-fast || !contains(github.event.pull_request.labels.*.name, 'run-all-tests') }} |