Sample config for CircleCI

This commit is contained in:
Lauri Saks 2019-11-04 13:06:22 +03:00
parent b4d785cf39
commit ee6a7b8dd2

17
.circleci/config.yml Normal file
View file

@ -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