Add circleci setup scaffolding
This commit is contained in:
parent
160f432812
commit
f69f60fbe3
1 changed files with 14 additions and 0 deletions
14
.circleci/config.yml
Normal file
14
.circleci/config.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: debian:stretch
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Greeting
|
||||
command: echo Hello, world.
|
||||
- run:
|
||||
name: Print the Current Time
|
||||
command: date
|
||||
|
Loading…
Reference in a new issue