From fb9caec663fb92c47210816f44b6641a1a25503a Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Thu, 4 May 2023 23:55:26 -0700 Subject: [PATCH] Update CircleCI configuration. --- .circleci.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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