Skip to content

Commit 61d6b67

Browse files
committed
Set up CI and Danger integration
1 parent 05040c0 commit 61d6b67

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.style.yapf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[style]
2+
COLUMN_LIMIT = 119
3+
INDENT_WIDTH = 4
4+
USE_TABS = False

hello_world.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
def vector(dim):
2+
import numpy as np
3+
4+
5+
return np.random.rand(dim)
6+
17
def message():
28
return 'Hello, Danger world!'
39

410
def main():
511
print(message())
12+
print(vector(10))
613

714
if __name__ == '__main__':
815
main()

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
yapf
2+
futures

0 commit comments

Comments
 (0)