mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 00:30:57 -05:00
3c3fdfcc0c
The `.github/workflows` directory has additional permissions attached, preventing these files from being by the Upgrade Gradle Wrapper plugin.
34 lines
805 B
YAML
34 lines
805 B
YAML
name: Execute failure cases
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
|
|
|
|
jobs:
|
|
|
|
wrapper-missing:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Test wrapper missing
|
|
uses: ./
|
|
continue-on-error: true
|
|
with:
|
|
build-root-directory: .github/workflow-samples/no-wrapper
|
|
arguments: help
|
|
|
|
bad-configuration:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Test bad config value
|
|
uses: ./
|
|
continue-on-error: true
|
|
with:
|
|
build-root-directory: .github/workflow-samples/no-wrapper
|
|
arguments: help
|
|
cache-disabled: yes
|