Skip to content

Update cet.yml #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/cet.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
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}
Expand All @@ -13,6 +19,6 @@ jobs:
run: exit 0

- name: step2
if: false
if: ${{inputs.run_s2}}
run: exit 1

Loading