diff --git a/.circleci.yaml b/.circleci.yaml index 2ed2569..06fef77 100644 --- a/.circleci.yaml +++ b/.circleci.yaml @@ -21,7 +21,7 @@ commands: # Define a job to be invoked later in a workflow. # See: https://circleci.com/docs/2.0/configuration-reference/#jobs jobs: - build: + testbuild: working_directory: ~/repo # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor @@ -54,7 +54,6 @@ jobs: # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows workflows: - sample: # This is the name of the workflow, feel free to change it to better match your workflow. - # Inside the workflow, you define the jobs you want to run. + testbuild: jobs: - - build + - testbuild