Add sample `config.yml`:
``` --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,16 @@ +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 ```
This commit is contained in:
parent
f2b27b4750
commit
003a943a1d
|
@ -0,0 +1,17 @@
|
|||
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 New Issue