2021-09-27 19:33:22 -06:00
|
|
|
name: Execute failure cases
|
2021-09-12 10:52:53 -06:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
2022-01-18 10:52:22 -07:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
|
2021-09-12 10:52:53 -06:00
|
|
|
|
|
|
|
jobs:
|
2021-09-14 05:33:50 -06:00
|
|
|
|
2021-09-12 10:52:53 -06:00
|
|
|
wrapper-missing:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test wrapper missing
|
|
|
|
uses: ./
|
2021-09-15 17:57:43 -06:00
|
|
|
continue-on-error: true
|
2021-09-12 10:52:53 -06:00
|
|
|
with:
|
2022-04-02 12:33:04 -06:00
|
|
|
build-root-directory: .github/workflows/samples/no-wrapper
|
2021-09-12 10:52:53 -06:00
|
|
|
arguments: help
|
|
|
|
|
|
|
|
bad-configuration:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test bad config value
|
|
|
|
uses: ./
|
2021-09-15 17:57:43 -06:00
|
|
|
continue-on-error: true
|
2021-09-12 10:52:53 -06:00
|
|
|
with:
|
2022-04-02 12:33:04 -06:00
|
|
|
build-root-directory: .github/workflows/samples/no-wrapper
|
2021-09-12 10:52:53 -06:00
|
|
|
arguments: help
|
2021-09-12 14:26:38 -06:00
|
|
|
cache-disabled: yes
|