We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d42da commit 9461decCopy full SHA for 9461dec
1 file changed
.circleci/config.yml
@@ -40,3 +40,19 @@ jobs:
40
. venv/bin/activate
41
python3 bulk_insert.py -n ./example/Person.csv -n ./example/Country.csv -r ./example/KNOWS.csv -r ./example/VISITED.csv Visits
42
python3 bulk_insert.py -n ./example2/Robots.csv Robots
43
+
44
+workflows:
45
+ version: 2
46
+ commit:
47
+ jobs:
48
+ - build
49
+ nightly:
50
+ triggers:
51
+ - schedule:
52
+ cron: "0 0 * * *"
53
+ filters:
54
+ branches:
55
+ only:
56
+ - master
57
58
0 commit comments