Skip to content

Commit 6cd95c6

Browse files
committed
Use stages object
1 parent b73f5d7 commit 6cd95c6

1 file changed

Lines changed: 23 additions & 22 deletions

File tree

calkit.yaml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,29 @@ environments:
1818
image: texlive/texlive:latest-full
1919
description: TeX Live via Docker.
2020
pipeline:
21-
collect-data:
22-
kind: python-script
23-
script_path: scripts/collect-data.py
24-
environment: py
25-
outputs:
26-
- data/raw/data.csv
27-
plot-voltage:
28-
kind: python-script
29-
script_path: scripts/plot-voltage.py
30-
environment: py
31-
inputs:
32-
- data/raw/data.csv
33-
outputs:
34-
- figures/voltage-time-series.png
35-
build-paper:
36-
kind: latex
37-
target_path: paper/paper.tex
38-
environment: tex
39-
inputs:
40-
- figures
41-
outputs:
42-
- paper/paper.pdf
21+
stages:
22+
collect-data:
23+
kind: python-script
24+
script_path: scripts/collect-data.py
25+
environment: py
26+
outputs:
27+
- data/raw/data.csv
28+
plot-voltage:
29+
kind: python-script
30+
script_path: scripts/plot-voltage.py
31+
environment: py
32+
inputs:
33+
- data/raw/data.csv
34+
outputs:
35+
- figures/voltage-time-series.png
36+
build-paper:
37+
kind: latex
38+
target_path: paper/paper.tex
39+
environment: tex
40+
inputs:
41+
- figures
42+
outputs:
43+
- paper/paper.pdf
4344
datasets:
4445
- path: data/raw/data.csv
4546
title: Raw data

0 commit comments

Comments
 (0)