Skip to content

Commit 5557818

Browse files
committed
Add example CircleCI configuration
1 parent f248a89 commit 5557818

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.circleci/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2.0
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/python:latest
6+
7+
working_directory: ~/repo
8+
9+
steps:
10+
- checkout
11+
12+
- run:
13+
name: Greeting
14+
command: echo Hello, world.
15+
16+
- run:
17+
name: Print the Current Time
18+
command: date

0 commit comments

Comments
 (0)