From 4ac26772681d74be2cbbf9376a02ebc395257c86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Sat, 17 May 2025 08:50:07 +0200 Subject: Initial test scripts and configuration --- test/asset/run/norepo-basic.yaml | 9 +++++++++ test/asset/run/repo-basic.yaml | 7 +++++++ test/asset/run/repo-basic2.yaml | 15 +++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 test/asset/run/norepo-basic.yaml create mode 100644 test/asset/run/repo-basic.yaml create mode 100644 test/asset/run/repo-basic2.yaml (limited to 'test/asset/run') diff --git a/test/asset/run/norepo-basic.yaml b/test/asset/run/norepo-basic.yaml new file mode 100644 index 0000000..2000858 --- /dev/null +++ b/test/asset/run/norepo-basic.yaml @@ -0,0 +1,9 @@ +job success: + checkout: null + shell: + - "true" + +job failure: + checkout: null + shell: + - "false" diff --git a/test/asset/run/repo-basic.yaml b/test/asset/run/repo-basic.yaml new file mode 100644 index 0000000..82f5650 --- /dev/null +++ b/test/asset/run/repo-basic.yaml @@ -0,0 +1,7 @@ +job success: + shell: + - "true" + +job failure: + shell: + - "false" diff --git a/test/asset/run/repo-basic2.yaml b/test/asset/run/repo-basic2.yaml new file mode 100644 index 0000000..bcfac50 --- /dev/null +++ b/test/asset/run/repo-basic2.yaml @@ -0,0 +1,15 @@ +job success: + shell: + - "true" + +job third: + shell: + - "true" + +job failure: + shell: + - "false" + +job fourth: + shell: + - "true" -- cgit v1.2.3