...

Text file src/github.com/docker/cli/.circleci/config.yml

Documentation: github.com/docker/cli/.circleci

     1# This is a dummy CircleCI config file to avoid GitHub status failures reported
     2# on branches that don't use CircleCI. This file should be deleted when all
     3# branches are no longer dependent on CircleCI.
     4version: 2
     5
     6jobs:
     7  dummy:
     8    docker:
     9      - image: busybox
    10    steps:
    11      - run:
    12          name: "dummy"
    13          command: echo "dummy job"
    14
    15workflows:
    16  version: 2
    17  ci:
    18    jobs:
    19      - dummy

View as plain text