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 10da795
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/argilla-server/sample.workflow.yml
Original file line number Diff line number Diff line change
@@ -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!"

0 comments on commit 10da795

Please sign in to comment.