Skip to content

Commit

Permalink
Add sample CircleCI configuration
Browse files Browse the repository at this point in the history
Summary:
It appears a sample config is needed to finish configuring CircleCI.

Once enabled it can be changed to run the actual build and tests.
Closes #123

Differential Revision: D7656640

Pulled By: pietern

fbshipit-source-id: 6d9b3f60df7a3bc10c3f122a907dcde697694b94
  • Loading branch information
pietern authored and facebook-github-bot committed Apr 17, 2018
1 parent aad0002 commit fc1a029
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,13 @@
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

0 comments on commit fc1a029

Please sign in to comment.