15 lines
249 B
YAML
15 lines
249 B
YAML
|
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
|
||
|
|