Skip to content

Test

Test #2

Workflow file for this run

name: Test
on:
workflow_dispatch: # adds ability to run this manually
inputs:
run_s2:
description: Run Step2
required: false
default: false
type: boolean
defaults:
run:
shell: bash -euxo pipefail {0}
jobs:
test1:
runs-on: ubuntu-latest
steps:
- name: step1
run: exit 0
- name: step2
if: ${{inputs.run_s2}}
run: exit 1