Adding failure workflow for testing
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
name: Test failure scenarios
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
directory:
|
||||
type: string
|
||||
default: test-data/maven/simple
|
||||
required: true
|
||||
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test Failure
|
||||
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Run local Action
|
||||
uses: ./
|
||||
with:
|
||||
directory: ${{ inputs.directory }}
|
||||
Reference in New Issue
Block a user