From 99d1b7e529ca847d12528176de83d6689e4ddc34 Mon Sep 17 00:00:00 2001 From: a-masterov <72613290+a-masterov@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:27:09 +0100 Subject: [PATCH] Create cet.yml --- .github/workflows/cet.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cet.yml diff --git a/.github/workflows/cet.yml b/.github/workflows/cet.yml new file mode 100644 index 0000000..a4031ef --- /dev/null +++ b/.github/workflows/cet.yml @@ -0,0 +1,18 @@ +name: Test +on: + workflow_dispatch: # adds ability to run this manually +defaults: + run: + shell: bash -euxo pipefail {0} + +jobs: + test1: + runs-on: ubuntu-latest + steps: + - name: step1 + run: exit 0 + + - name: step2 + if: false + run: exit 1 +