Skip to content

Commit

Permalink
ci: Create a sample test to run action under folder
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Apr 24, 2024
1 parent a9228f1 commit 5d8cc8a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/argilla-server/sample.workflow.yml
Original file line number Diff line number Diff line change
@@ -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!"

0 comments on commit 5d8cc8a

Please sign in to comment.