Commit
•
2cffd80
1
Parent(s):
a9691a0
Create .github/workflows/simple-action.yml
Browse files
.github/workflows/simple-action.yml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Basic pipeline
|
2 |
+
|
3 |
+
on: push
|
4 |
+
|
5 |
+
jobs:
|
6 |
+
basic-pipeline:
|
7 |
+
runs-on: ubuntu-latest
|
8 |
+
steps:
|
9 |
+
- name: Checkout
|
10 |
+
uses: actions/checkout@v2
|
11 |
+
- name: Create data
|
12 |
+
run: |
|
13 |
+
./etl.sh
|
14 |
+
- name: Peek Data output
|
15 |
+
run: |
|
16 |
+
head -n 10 data.csv
|