Skip to content

[pull] master from datacite:master #344

[pull] master from datacite:master

[pull] master from datacite:master #344

Workflow file for this run

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') }}