From 5d8cc8a39adbea909c719726dd0533067f33a466 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 | 34 +++++++++++++++++++ 1 file changed, 34 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 0000000000..09b9cb9600 --- /dev/null +++ b/.github/workflows/argilla-server/sample.workflow.yml @@ -0,0 +1,34 @@ +name: CI Pipeline + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +on: + push: + branches: + - "main" + - "develop" + - "releases/**" + tags: + - "*" + pull_request: + branches: + - "main" + - "develop" + - "releases/**" + - "feature/**" + - "feat/**" + - "fix/**" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Say Hello + run: | + echo "Hello, world!"