From 10da795b06774693ecd0f2f5668040ded185e691 Mon Sep 17 00:00:00 2001 From: Francisco Aranda Date: Wed, 24 Apr 2024 10:34:44 +0200 Subject: [PATCH] ci: Create a sample test to run action under folder --- .../argilla-server/sample.workflow.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/argilla-server/sample.workflow.yml diff --git a/.github/workflows/argilla-server/sample.workflow.yml b/.github/workflows/argilla-server/sample.workflow.yml new file mode 100644 index 00000000000..1ffd1cf2429 --- /dev/null +++ b/.github/workflows/argilla-server/sample.workflow.yml @@ -0,0 +1,18 @@ +name: CI Pipeline + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Say Hello + run: | + echo "Hello, world!"