From b2dd00961fe63e393ccc4c0c0f7039f5c03fa909 Mon Sep 17 00:00:00 2001 From: devtmaz Date: Wed, 17 Jun 2026 14:50:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20add=20demo=20ci=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/demo_workflow.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/demo_workflow.yml diff --git a/.github/workflows/demo_workflow.yml b/.github/workflows/demo_workflow.yml new file mode 100644 index 0000000..1622105 --- /dev/null +++ b/.github/workflows/demo_workflow.yml @@ -0,0 +1,20 @@ +name: Demo CI workflow + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Run Command 1 + run: echo "Command 1" + + - name: Run Command 2 + run: echo "Command 2"